net.liftweb.http

LiftActorJWithListenerManager

abstract class LiftActorJWithListenerManager extends LiftActorJ with ListenerManager

A LiftActorJ with ListenerManager. Subclass this class to get a Java-usable LiftActorJ with ListenerManager

Linear Supertypes
ListenerManager, LiftActorJ, LiftActor, ForwardableActor[Any, Any], GenericActor[Any], TypedActor[Any, Any], SpecializedLiftActor[Any], SimpleActor[Any], JavaActorBase, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LiftActorJWithListenerManager
  2. ListenerManager
  3. LiftActorJ
  4. LiftActor
  5. ForwardableActor
  6. GenericActor
  7. TypedActor
  8. SpecializedLiftActor
  9. SimpleActor
  10. JavaActorBase
  11. AnyRef
  12. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LiftActorJWithListenerManager()

Abstract Value Members

  1. abstract def createUpdate: Any

    This method is called when the

    updateListeners()
    
    method needs a message to send to subscribed Actors.

    This method is called when the

    updateListeners()
    
    method needs a message to send to subscribed Actors. In particular, createUpdate is used to create the first message that a newly subscribed CometListener will receive.

    updateListeners() needs a message to send to subscribed Actors. In particular, createUpdate is used to create the first message that a newly subscribed CometListener will receive.

    Attributes
    protected
    Definition Classes
    ListenerManager

Concrete Value Members

  1. def !(msg: Any): Unit

    Definition Classes
    SpecializedLiftActor → SimpleActor
  2. def !!(msg: Any): Box[Any]

    Definition Classes
    LiftActor → TypedActor
  3. def !!(msg: Any, timeout: Long): Box[Any]

    Definition Classes
    LiftActor → TypedActor
  4. def !<(msg: Any): LAFuture[Any]

    Definition Classes
    LiftActor
  5. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  7. def !?(timeout: Long, message: Any): Box[Any]

    Definition Classes
    LiftActor → TypedActor
  8. def !?(msg: Any): Any

    Definition Classes
    LiftActor → TypedActor
  9. final def ##(): Int

    Definition Classes
    AnyRef → Any
  10. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  12. lazy val _messageHandler: PartialFunction[Any, Unit]

    Attributes
    protected
    Definition Classes
    LiftActorJ
  13. def around[R](f: ⇒ R): R

    Attributes
    protected
    Definition Classes
    SpecializedLiftActor
  14. def aroundLoans: List[CommonLoanWrapper]

    Attributes
    protected
    Definition Classes
    SpecializedLiftActor
  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def calculateJavaMessageHandler: PartialFunction[Any, Unit]

    Attributes
    protected
    Definition Classes
    LiftActorJ
  17. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  20. def exceptionHandler: PartialFunction[Throwable, Unit]

    Attributes
    protected
    Definition Classes
    SpecializedLiftActor
  21. def execTranslate(f: (Any) ⇒ Unit)(v: Any): Unit

    Attributes
    protected
    Definition Classes
    LiftActor → SpecializedLiftActor
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def forwardMessageTo(msg: Any, forwardTo: TypedActor[Any, Any]): Unit

    Attributes
    protected
    Definition Classes
    LiftActor → ForwardableActor
  24. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  25. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  26. def highPriority: PartialFunction[Any, Unit]

    Override this method to process high priority messages.

    Override this method to process high priority messages. Note: you must not process messages with a wildcard (match all), since this will intercept the messages used for subscription control.

    Attributes
    protected
    Definition Classes
    ListenerManager
  27. def highPriorityReceive: Box[PartialFunction[Any, Unit]]

    Attributes
    protected
    Definition Classes
    SpecializedLiftActor
  28. def insertMsgAtHeadOfQueue_!(msg: Any): Unit

    Attributes
    protected
    Definition Classes
    SpecializedLiftActor
  29. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  30. def listenerService: PartialFunction[Any, Unit]

    Attributes
    protected
    Definition Classes
    ListenerManager
  31. def lowPriority: PartialFunction[Any, Unit]

    Override this method to process low priority messages.

    Override this method to process low priority messages.

    Attributes
    protected
    Definition Classes
    ListenerManager
  32. def mediumPriority: PartialFunction[Any, Unit]

    Override this method to process medium priority messages.

    Override this method to process medium priority messages. See the highPriority method for an important note on wildcard processing.

    Attributes
    protected
    Definition Classes
    ListenerManager
    See also

    #highPriority

  33. def messageHandler: PartialFunction[Any, Unit]

    Attributes
    protected
    Definition Classes
    LiftActorJWithListenerManagerListenerManager → LiftActorJ → SpecializedLiftActor
  34. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  37. def onListenersListEmptied(): Unit

    Called after RemoveAListener-message is processed and no more listeners exist.

    Called after RemoveAListener-message is processed and no more listeners exist. Default does nothing.

    Attributes
    protected
    Definition Classes
    ListenerManager
  38. def reply(v: Any): Unit

    Attributes
    protected
    Definition Classes
    LiftActor → ForwardableActor
  39. def send(msg: Any): Unit

    Definition Classes
    SpecializedLiftActor
  40. def sendAndGetFuture(msg: Any): LAFuture[Any]

    Definition Classes
    LiftActor
  41. def sendAndGetReply(timeout: Long, msg: Any): Any

    Definition Classes
    LiftActor
  42. def sendAndGetReply(msg: Any): Any

    Definition Classes
    LiftActor
  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  44. def testTranslate(f: (Any) ⇒ Boolean)(v: Any): Boolean

    Attributes
    protected
    Definition Classes
    LiftActor → SpecializedLiftActor
  45. def toString(): String

    Definition Classes
    AnyRef → Any
  46. def updateListeners(msg: Any): Unit

    Update the listeners with a message that we create.

    Update the listeners with a message that we create. Note that with this invocation the createUpdate method is not used.

    Attributes
    protected
    Definition Classes
    ListenerManager
  47. def updateListeners(listeners: List[(SimpleActor[Any], PartialFunction[Any, Boolean])] = listeners): Unit

    Update the listeners with the message generated by createUpdate

    Update the listeners with the message generated by createUpdate

    Attributes
    protected
    Definition Classes
    ListenerManager
  48. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ListenerManager

Inherited from LiftActorJ

Inherited from LiftActor

Inherited from ForwardableActor[Any, Any]

Inherited from GenericActor[Any]

Inherited from TypedActor[Any, Any]

Inherited from SpecializedLiftActor[Any]

Inherited from SimpleActor[Any]

Inherited from JavaActorBase

Inherited from AnyRef

Inherited from Any

Ungrouped