raiseInactive method

  1. @protected
void raiseInactive()
inherited

Throws an InactiveActorException if the state is no longer set to Active.

Implementation

@protected
void raiseInactive() {
  checkInitialized();
  if (!isActive()) ////
    throw InactiveActorException();
}