Package akka.actor

Class AbstractActor$


  • public class AbstractActor$
    extends java.lang.Object
    Defines which messages the Actor can handle, along with the implementation of how the messages should be processed. You can build such behavior with the ReceiveBuilder but it can be implemented in other ways than using the ReceiveBuilder since it in the end is just a wrapper around a Scala PartialFunction. In Java, you can implement PartialFunction by extending AbstractPartialFunction.
    • Field Detail

      • MODULE$

        public static final AbstractActor$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • AbstractActor$

        public AbstractActor$()