org.digimead.digi.ctrl.lib.base.AppComponent

SafeDialog

class SafeDialog extends SyncVar[SafeDialogEntry] with Logging

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. SafeDialog
  2. SyncVar
  3. Logging
  4. AnyRef
  5. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SafeDialog()

Value Members

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

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

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

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

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

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

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def get(timeout: Long): Option[SafeDialogEntry]

    Waits for this SyncVar to become defined at least for timeout milliseconds (possibly more), and gets its value.

    Waits for this SyncVar to become defined at least for timeout milliseconds (possibly more), and gets its value.

    timeout

    the amount of milliseconds to wait, 0 means forever

    returns

    None if variable is undefined after timeout, Some(value) otherwise

    Definition Classes
    SyncVar
  12. def get(timeout: Long, guard: (SafeDialogEntry) ⇒ Boolean): Option[SafeDialogEntry]

    Waits for this SyncVar to become defined at least for timeout milliseconds (possibly more), and gets its value (if guard return true).

    Waits for this SyncVar to become defined at least for timeout milliseconds (possibly more), and gets its value (if guard return true).

    timeout

    the amount of milliseconds to wait, 0 means forever

    returns

    None if variable is undefined after timeout, Some(value) otherwise

    Definition Classes
    SyncVar
  13. def get(): SafeDialogEntry

    Definition Classes
    SyncVar
  14. final def getClass(): java.lang.Class[_]

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

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

    Definition Classes
    Any
  17. def isSet: Boolean

    Definition Classes
    SyncVar
  18. implicit val log: RichLogger

    Attributes
    protected[lib]
    Definition Classes
    Logging
  19. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  22. def put(x: SafeDialogEntry, timeout: Long, signalAll: Boolean): Unit

    Definition Classes
    SyncVar
  23. def put(x: SafeDialogEntry, timeout: Long): Unit

    Definition Classes
    SyncVar
  24. def put(x: SafeDialogEntry, signalAll: Boolean): Unit

    Definition Classes
    SyncVar
  25. def put(x: SafeDialogEntry): Unit

    Definition Classes
    SyncVar
  26. def set(entry: SafeDialogEntry, signalAll: Boolean = true): Unit

    Definition Classes
    SafeDialogSyncVar
    Annotations
    @Loggable()
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def take(): SafeDialogEntry

    Definition Classes
    SyncVar
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. def unset(signalAll: Boolean = true): Unit

    Definition Classes
    SafeDialogSyncVar
  31. def updateDismissCallback(f: Option[() ⇒ Any]): Unit

  32. val value: AtomicReference[Option[SafeDialogEntry]]

    Attributes
    protected
    Definition Classes
    SyncVar
  33. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  36. def waitMeasuringElapsed(fName: String, timeout: Long): Long

    Waits timeout millis.

    Waits timeout millis. If timeout <= 0 just returns 0. If the system clock went backward, it will return 0, so it never returns negative results.

    Attributes
    protected
    Definition Classes
    SyncVar
  37. def waitUnset(timeout: Long): Boolean

    Definition Classes
    SyncVar

Inherited from SyncVar[SafeDialogEntry]

Inherited from Logging

Inherited from AnyRef

Inherited from Any