Packages

trait JAVAMessageDispatcher extends MessageDispatcher[ProtocolMessagePayload, JAVAMessageType] with ILogger

Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JAVAMessageDispatcher
  2. MessageDispatcher
  3. ILogger
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def debug(message: String, component: String, subcomponent: String): Unit

    Logs a DEBUG severity message.

    Logs a DEBUG severity message.

    message

    - message text

    component

    - component name

    subcomponent

    - sub-component name

    Definition Classes
    ILogger
  2. abstract def debugDetail(message: String, component: String, subcomponent: String): Unit

    Logs a DEBUG_DETAIL severity message.

    Logs a DEBUG_DETAIL severity message.

    message

    - message text

    component

    - component name

    subcomponent

    - sub-component name

    Definition Classes
    ILogger
  3. abstract def debugOverview(message: String, component: String, subcomponent: String): Unit

    Logs a DEBUG_OVERVIEW severity message.

    Logs a DEBUG_OVERVIEW severity message.

    message

    - message text

    component

    - component name

    subcomponent

    - sub-component name

    Definition Classes
    ILogger
  4. abstract def error(message: String, component: String, subcomponent: String): Unit

    Logs an ERROR severity message.

    Logs an ERROR severity message.

    message

    - message text

    component

    - component name

    subcomponent

    - sub-component name

    Definition Classes
    ILogger
  5. abstract def log(message: String, severity: common.logger.MessageSeverity.Value, component: String, subcomponent: String): Unit

    Logs a message

    Logs a message

    message

    - message text

    severity

    - message severity

    component

    - component name

    subcomponent

    - sub-component name

    Definition Classes
    ILogger
  6. abstract def setLoggerConfiguration(loggerSettings: ILoggerSettings): Unit

    Sets logger configuration, both for the server and for the client.

    Sets logger configuration, both for the server and for the client.

    Definition Classes
    ILogger
  7. abstract def warning(message: String, component: String, subcomponent: String): Unit

    Logs a WARNING severity message.

    Logs a WARNING severity message.

    message

    - message text

    component

    - component name

    subcomponent

    - sub-component name

    Definition Classes
    ILogger

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  10. def getMessageTypeMeta(messageType: String): Option[JAVAMessageType]
    Definition Classes
    MessageDispatcher
  11. def handleJSONMessageRecieved(message: Any): Unit
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. def internalHandleRecievedMessage(message: ProtocolMessage[ProtocolMessagePayload]): Unit

    To be called by the trait user to handle recieved messages

    To be called by the trait user to handle recieved messages

    message

    - error message that was recieved

    Definition Classes
    MessageDispatcher
  14. def internalSendJSONMessage(message: Any): Unit
  15. def internalSendMessage(message: ProtocolMessage[ProtocolMessagePayload]): Unit

    Performs actual message sending.

    Performs actual message sending. Not intended to be called directly, instead is being used by send() and sendWithResponse() methods Called by the trait.

    message

    - message to send

    Definition Classes
    JAVAMessageDispatcherMessageDispatcher
  16. def internalSendSeqMessage(message: ProtocolSeqMessage[ProtocolMessagePayload]): Unit

    Performs actual message sending.

    Performs actual message sending. Not intended to be called directly, instead is being used by send() and sendWithResponse() methods Called by the trait.

    message

    - message to send

    Definition Classes
    JAVAMessageDispatcherMessageDispatcher
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def newFutureHandler[ArgType <: ProtocolMessagePayload, ResultType <: ProtocolMessagePayload](messageType: String, handler: (ArgType) ⇒ Future[ResultType], messageTypeMeta: Option[JAVAMessageType] = None): Unit
    Definition Classes
    MessageDispatcher
  20. def newFutureSeqHandler[ArgType <: ProtocolMessagePayload, ResultType <: ProtocolMessagePayload](messageType: String, handler: (ArgType) ⇒ Future[Seq[ResultType]], messageTypeMeta: Option[JAVAMessageType] = None): Unit
    Definition Classes
    MessageDispatcher
  21. def newMeta(messageType: String, messageTypeMeta: Option[JAVAMessageType]): Unit
    Definition Classes
    MessageDispatcher
  22. def newVoidHandler[ArgType <: ProtocolMessagePayload](messageType: String, handler: (ArgType) ⇒ Unit, messageTypeMeta: Option[JAVAMessageType] = None): Unit
    Definition Classes
    MessageDispatcher
  23. final def notify(): Unit
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  25. def send[ResultType](messageType: String, payload: ProtocolMessagePayload): Unit
    Definition Classes
    MessageDispatcher
  26. def sendWithResponse[ResultType <: ProtocolMessagePayload](messageType: String, payload: ProtocolMessagePayload): Future[ResultType]

    To be used by

    To be used by

    Definition Classes
    MessageDispatcher
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ILogger

Inherited from AnyRef

Inherited from Any

Ungrouped