net.liftweb.http

LiftCometActor

trait LiftCometActor extends TypedActor[Any, Any] with ForwardableActor[Any, Any] with Dependent

Linear Supertypes
Dependent, ForwardableActor[Any, Any], TypedActor[Any, Any], SimpleActor[Any], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. LiftCometActor
  2. Dependent
  3. ForwardableActor
  4. TypedActor
  5. SimpleActor
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. def ! (param: Any): Unit

    Send a message to the Actor

    Send a message to the Actor

    param

    the message to send

    Attributes
    abstract
    Definition Classes
    SimpleActor
  2. def !! (message: Any, timeout: Long): Box[Any]

    Asynchronous message send.

    Asynchronous message send. Send-and-receive eventually. Waits on a Future for the reply message. If recevied within timout interval that is specified then it returns Some(result) and if a timeout has occured None.

    Attributes
    abstract
    Definition Classes
    TypedActor
  3. def !! (message: Any): Box[Any]

    Asynchronous message send.

    Asynchronous message send. Send-and-receive eventually. Waits on a Future for the reply message. If recevied within the Actor default timeout interval then it returns Some(result) and if a timeout has occured None.

    Attributes
    abstract
    Definition Classes
    TypedActor
  4. def !? (timeout: Long, message: Any): Box[Any]

    Compatible with Scala Actors' !? method

    Compatible with Scala Actors' !? method

    Attributes
    abstract
    Definition Classes
    TypedActor
  5. def !? (param: Any): Any

    Attributes
    abstract
    Definition Classes
    TypedActor
  6. def buildSpan (time: Long, xml: NodeSeq): NodeSeq

    Attributes
    abstract
  7. def forwardMessageTo (msg: Any, forwardTo: TypedActor[Any, Any]): Unit

    Attributes
    protected abstract
    Definition Classes
    ForwardableActor
  8. def hasOuter : Boolean

    Attributes
    abstract
  9. def initCometActor (theSession: LiftSession, theType: Box[String], name: Box[String], defaultHtml: NodeSeq, attributes: Map[String, String]): Unit

    Attributes
    protected abstract
  10. def jsonCall : JsonCall

    Attributes
    abstract
  11. def name : Box[String]

    Attributes
    abstract
  12. def parentTag : Elem

    Attributes
    abstract
  13. def reply (msg: Any): Unit

    Attributes
    protected abstract
    Definition Classes
    ForwardableActor
  14. def theType : Box[String]

    Attributes
    abstract
  15. def uniqueId : String

    Attributes
    abstract

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

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

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

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

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

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def cometActorLocale : Locale

    The locale for the session that created the CometActor

  9. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  10. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  13. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  14. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  15. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  16. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  17. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  18. def poke (): Unit

    Poke the CometActor and cause it to do a partial update Noop which will have the effect of causing the component to redisplay any Wiring elements on the component.

    Poke the CometActor and cause it to do a partial update Noop which will have the effect of causing the component to redisplay any Wiring elements on the component. This method is Actor-safe and may be called from any thread, not just the Actor's message handler thread.

  19. def predicateChanged (which: net.liftweb.util.Cell[_]): Unit

    If the predicate cell changes, the Dependent will be notified

    If the predicate cell changes, the Dependent will be notified

    Definition Classes
    LiftCometActorDependent
  20. def sendInitialReq_? : Boolean

    Is this CometActor going to capture the initial Req object? If yes, override this method and return true and override captureInitialReq to capture the Req.

    Is this CometActor going to capture the initial Req object? If yes, override this method and return true and override captureInitialReq to capture the Req. Why have to explicitly ask for the Req? In order to send Req instances across threads, the Req objects must be snapshotted which is the process of reading the POST or PUT body from the HTTP request stream. We don't want to do this unless we have to, so by default the Req is not snapshotted/sent. But if you want it, you can have it.

  21. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  22. def toString (): String

    Definition Classes
    AnyRef → Any
  23. def unregisterFromAllDepenencies (): Unit

    Remove from all dependencies

    Remove from all dependencies

    Attributes
    protected
    Definition Classes
    Dependent
  24. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  27. def whoDoIDependOn : Seq[net.liftweb.util.Cell[_]]

    Get a list of all the cells this Dependency depends on

    Get a list of all the cells this Dependency depends on

    Attributes
    protected
    Definition Classes
    Dependent
  28. def youDependOnMe (who: net.liftweb.util.Cell[_]): Unit

    The Cell notifies the Dependent of the dependency

    The Cell notifies the Dependent of the dependency

    Definition Classes
    Dependent
  29. def youDontDependOnMe (who: net.liftweb.util.Cell[_]): Unit

    The Cell notifies the Dependent of the removed dependency

    The Cell notifies the Dependent of the removed dependency

    Definition Classes
    Dependent

Inherited from Dependent

Inherited from ForwardableActor[Any, Any]

Inherited from TypedActor[Any, Any]

Inherited from SimpleActor[Any]

Inherited from AnyRef

Inherited from Any