Interface EventDriverImpl
-
- All Known Implementing Classes:
JettyAnnotatedImpl,JettyListenerImpl
@Deprecated(since="2021-05-27") public interface EventDriverImpl
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A specific implementation of a EventDriver.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description EventDrivercreate(Object websocket, WebSocketPolicy policy)Deprecated.Create the EventDriver based on this implementation.StringdescribeRule()Deprecated.human readable string describing the rule that would support this EventDriver.booleansupports(Object websocket)Deprecated.Test for if this implementation can support the provided websocket.
-
-
-
Method Detail
-
create
EventDriver create(Object websocket, WebSocketPolicy policy) throws Throwable
Deprecated.Create the EventDriver based on this implementation.- Parameters:
websocket- the websocket to wrappolicy- the policy to use- Returns:
- the created EventDriver
- Throws:
Throwable- if unable to create the EventDriver
-
describeRule
String describeRule()
Deprecated.human readable string describing the rule that would support this EventDriver.Used to help developer with possible object annotations, listeners, or base classes.
- Returns:
- the human readable description of this event driver rule(s).
-
supports
boolean supports(Object websocket)
Deprecated.Test for if this implementation can support the provided websocket.- Parameters:
websocket- the possible websocket to test- Returns:
- true if implementation can support it, false if otherwise.
-
-