raiseInactive method
- @protected
inherited
Throws an InactiveActorException if the state is no longer set to
Active.
Implementation
@protected
void raiseInactive() {
checkInitialized();
if (!isActive()) ////
throw InactiveActorException();
}