Trait

com.reactific.helpers

Registry

Related Doc: package helpers

Permalink

trait Registry[T <: Registrable[T]] extends AbstractRegistry[Symbol, T]

A trait for specifying the registration of some type of object (T) which must have at least Registrable mixed in. This abstracts the notion of a registry of objects that conform to an interface.

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Registry
  2. AbstractRegistry
  3. ThrowingHelper
  4. LoggingHelper
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def registrantsName: String

    Permalink
  2. abstract def registryName: String

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to any2stringadd[Registry[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Registry[T], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to ArrowAssoc[Registry[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def _register(key: Symbol, obj: T): obj.type

    Permalink
    Attributes
    protected
    Definition Classes
    AbstractRegistry
  7. final def _unregister(key: Symbol): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    AbstractRegistry
  8. def apply(name: Symbol): Option[T]

    Permalink
  9. def as[U <: Registrable[T]](id: Symbol): U

    Permalink
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def contains(key: Symbol): Boolean

    Permalink
    Definition Classes
    AbstractRegistry
  13. def containsValue(value: T): Boolean

    Permalink
    Definition Classes
    AbstractRegistry
  14. def createLoggerName: String

    Permalink
    Attributes
    protected
    Definition Classes
    RegistryLoggingHelper
  15. def ensuring(cond: (Registry[T]) ⇒ Boolean, msg: ⇒ Any): Registry[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to Ensuring[Registry[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (Registry[T]) ⇒ Boolean): Registry[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to Ensuring[Registry[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): Registry[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to Ensuring[Registry[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): Registry[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to Ensuring[Registry[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def exists(name: Symbol): Boolean

    Permalink
    Definition Classes
    AbstractRegistry
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def find(ids: Seq[Symbol]): Seq[T]

    Permalink
  24. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to StringFormat[Registry[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  26. def getRegistrant(name: Symbol): Option[T]

    Permalink
  27. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  28. def isEmpty: Boolean

    Permalink
    Definition Classes
    AbstractRegistry
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. def isRegistered(name: Symbol): Boolean

    Permalink
  31. def keys: Seq[Symbol]

    Permalink
    Definition Classes
    AbstractRegistry
  32. def level: Level

    Permalink
    Definition Classes
    LoggingHelper
  33. lazy val log: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingHelper
  34. def loggerName: String

    Permalink
    Definition Classes
    LoggingHelper
  35. def lookup(key: Symbol): Option[T]

    Permalink
    Definition Classes
    AbstractRegistry
  36. def lookupOrElse(key: Symbol, value: T): Option[T]

    Permalink
    Definition Classes
    AbstractRegistry
  37. def map[W](f: ((Symbol, T)) ⇒ (Symbol, W)): Map[Symbol, W]

    Permalink
    Definition Classes
    AbstractRegistry
  38. def mkThrowable(msg: String, cause: Option[Throwable] = None): ThrowableWithComponent

    Permalink
    Attributes
    protected
    Definition Classes
    ThrowingHelper
  39. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  40. def nonEmpty: Boolean

    Permalink
    Definition Classes
    AbstractRegistry
  41. def notImplemented(what: String): Nothing

    Permalink
    Definition Classes
    ThrowingHelper
  42. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  43. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  44. def pick: T

    Permalink
  45. def pick(index: Int): Symbol

    Permalink
    Definition Classes
    AbstractRegistry
  46. val rand: Random

    Permalink
  47. def register(thing: T): Unit

    Permalink
  48. def select(f: ((Symbol, T)) ⇒ Boolean): Iterable[T]

    Permalink
    Definition Classes
    AbstractRegistry
  49. def size: Int

    Permalink
    Definition Classes
    AbstractRegistry
  50. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  51. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  52. def toss(msg: ⇒ String, cause: Option[Throwable] = None): Nothing

    Permalink

    Identity Aware Exception Toss This function makes it easier to throw (toss) an exception that adds a message to it and also identifies the tosser that threw it.

    Identity Aware Exception Toss This function makes it easier to throw (toss) an exception that adds a message to it and also identifies the tosser that threw it. This helps track down where in the code the message was thrown from.

    msg

    - Message to add to the exception

    cause

    - The root cause exception

    Definition Classes
    ThrowingHelper
  53. def unregister(thing: T): Unit

    Permalink
  54. def values: Seq[T]

    Permalink
    Definition Classes
    AbstractRegistry
  55. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. def [B](y: B): (Registry[T], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Registry[T] to ArrowAssoc[Registry[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AbstractRegistry[Symbol, T]

Inherited from ThrowingHelper

Inherited from LoggingHelper

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Registry[T] to any2stringadd[Registry[T]]

Inherited by implicit conversion StringFormat from Registry[T] to StringFormat[Registry[T]]

Inherited by implicit conversion Ensuring from Registry[T] to Ensuring[Registry[T]]

Inherited by implicit conversion ArrowAssoc from Registry[T] to ArrowAssoc[Registry[T]]

Ungrouped