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 EventDriver
create(java.lang.Object websocket, WebSocketPolicy policy)
Deprecated.Create the EventDriver based on this implementation.java.lang.String
describeRule()
Deprecated.human readable string describing the rule that would support this EventDriver.boolean
supports(java.lang.Object websocket)
Deprecated.Test for if this implementation can support the provided websocket.
-
-
-
Method Detail
-
create
EventDriver create(java.lang.Object websocket, WebSocketPolicy policy) throws java.lang.Throwable
Deprecated.Create the EventDriver based on this implementation.- Parameters:
websocket
- the websocket to wrappolicy
- the policy to use- Returns:
- the created EventDriver
- Throws:
java.lang.Throwable
- if unable to create the EventDriver
-
describeRule
java.lang.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(java.lang.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.
-
-