com.socklabs:elasticservices-http

A framework for creating self coordinating asynchronous services.

Лицензия

Лицензия

Группа

Группа

com.socklabs
Идентификатор

Идентификатор

elasticservices-http
Последняя версия

Последняя версия

1.0.0-rc2
Дата

Дата

Тип

Тип

jar
Описание

Описание

A framework for creating self coordinating asynchronous services.

Скачать elasticservices-http

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.socklabs/elasticservices-http/ -->
<dependency>
    <groupId>com.socklabs</groupId>
    <artifactId>elasticservices-http</artifactId>
    <version>1.0.0-rc2</version>
</dependency>
// https://jarcasting.com/artifacts/com.socklabs/elasticservices-http/
implementation 'com.socklabs:elasticservices-http:1.0.0-rc2'
// https://jarcasting.com/artifacts/com.socklabs/elasticservices-http/
implementation ("com.socklabs:elasticservices-http:1.0.0-rc2")
'com.socklabs:elasticservices-http:jar:1.0.0-rc2'
<dependency org="com.socklabs" name="elasticservices-http" rev="1.0.0-rc2">
  <artifact name="elasticservices-http" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.socklabs', module='elasticservices-http', version='1.0.0-rc2')
)
libraryDependencies += "com.socklabs" % "elasticservices-http" % "1.0.0-rc2"
[com.socklabs/elasticservices-http "1.0.0-rc2"]

Зависимости

compile (12)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.5
com.google.guava : guava jar 14.0.1
com.netflix.servo : servo-core jar 0.4.47
com.google.protobuf : protobuf-java jar 2.4.1
org.springframework : spring-core jar 3.2.4.RELEASE
org.springframework : spring-context jar 3.2.4.RELEASE
org.springframework : spring-context-support jar 3.2.4.RELEASE
org.springframework : spring-web jar 3.2.4.RELEASE
org.springframework : spring-webmvc jar 3.2.4.RELEASE
cglib : cglib jar 2.2.2
com.socklabs : elasticservices-core jar 1.0.0-rc2
com.ning : async-http-client jar 1.7.22

provided (1)

Идентификатор библиотеки Тип Версия
javax.servlet : javax.servlet-api jar 3.0.1

Модули Проекта

Данный проект не имеет модулей.

About

This library provides a protocol buffer based framework for creating self coordinating asynchronous services.

Please refer to the project website for documentation:

http://elasticservic.es/

Overview

The library provides tools and components to create and define services that can communicate with each other.

A component is essentially a daemon that has one or more services running on it. Components are identified by a three part component ref that consists of a site id, cluster id and component id. A service is an instance of a service implementation associated with a component and is identified by a two part service ref consisting of a component and a service id.

When a service wants to engage another service, it uses the service registry to send a message to the service identified by the service ref.

An example service implementation is the gossip service. It consists of a service implementation that listens to component online and component status messages that are broadcasts to a fanout topic as well as a broadcast work that periodically sends out those messages for other components to consume.

Example: Calc

In the examples directory are the calc-service and calc-webapp maven modules.

The calc-service module includes a calculation service that listens to add messages and responds with result messages. It is an example of a standalone JSVC based daemon.

The calc-webapp module includes a spring-based HTTP API that engages the calc service. It includes an example edge service that demonstrates how synchronous projects, like HTTP edges, can engage asynchronous services.

License

Copyright (c) 2013,2014 Nick Gerakines nick@gerakines.net

This project and its contents are open source under the MIT license.

Версии библиотеки

Версия
1.0.0-rc2
1.0.0-rc1