You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 10, 2024. It is now read-only.
* a marker interface for a service that can contain a set of endpoints.
* every endpoint is a method that is bound to a URL that is defined when constructing the server(see {@link com.outbrain.ob1k.server.builder.ServerBuilder})
*
* a method must be asynchronous and must return a {@link com.outbrain.ob1k.concurrent.ComposableFuture} or a rx.Observable
* a method will be used for an endpoint provided it is public and non static.
* the bounded URL is by default: http://machineName:port/{appContext}/{serviceName}/{methodName}
* all parts of the URL can be configured by using various bind options on server creation.
* asynchronous methods must not block the calling thread.