Interface Initializer
-
- All Known Subinterfaces:
ServerHandler<CallMessage,V,CastMessage>
- All Known Implementing Classes:
AbstractServerHandler
public interface Initializer
A delegate object that can be used instead of subclassingBehaviorActor
and overriding its methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
init()
void
terminate(java.lang.Throwable cause)
-
-
-
Method Detail
-
init
void init() throws java.lang.InterruptedException, SuspendExecution
- Throws:
java.lang.InterruptedException
SuspendExecution
-
terminate
void terminate(java.lang.Throwable cause) throws SuspendExecution
- Throws:
SuspendExecution
-
-