Uses of Interface
org.simpleframework.http.socket.service.Service
-
Packages that use Service Package Description org.simpleframework.http.socket.service -
-
Uses of Service in org.simpleframework.http.socket.service
Fields in org.simpleframework.http.socket.service declared as Service Modifier and Type Field Description private Service
PathRouter. primary
This is the default service chosen if there is no match.private Service
ProtocolRouter. primary
This is the default service chosen if there is no match.private Service
DirectRouter. service
The service used by this router instance.Fields in org.simpleframework.http.socket.service with type parameters of type Service Modifier and Type Field Description private java.util.Map<java.lang.String,Service>
PathRouter. registry
This is the set of services that can be selected.private java.util.Map<java.lang.String,Service>
ProtocolRouter. registry
This is the set of services that can be selected.Methods in org.simpleframework.http.socket.service that return Service Modifier and Type Method Description Service
DirectRouter. route(Request request, Response response)
This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.Service
PathRouter. route(Request request, Response response)
This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.Service
ProtocolRouter. route(Request request, Response response)
This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.Service
Router. route(Request request, Response response)
This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.Constructors in org.simpleframework.http.socket.service with parameters of type Service Constructor Description DirectRouter(Service service)
Constructor for theDirectRouter
object.DirectRouter(Service service, java.lang.String protocol)
Constructor for theDirectRouter
object.PathRouter(java.util.Map<java.lang.String,Service> registry, Service primary)
Constructor for thePathRouter
object.ProtocolRouter(java.util.Map<java.lang.String,Service> registry, Service primary)
Constructor for theProtocolRouter
object.Constructor parameters in org.simpleframework.http.socket.service with type arguments of type Service Constructor Description PathRouter(java.util.Map<java.lang.String,Service> registry, Service primary)
Constructor for thePathRouter
object.ProtocolRouter(java.util.Map<java.lang.String,Service> registry, Service primary)
Constructor for theProtocolRouter
object.
-