AbstractProxyService

AbstractProxyService ⇐ Abstract

Kind: global class
Extends: Abstract

AbstractProxyService()

Raw service interface for various proxy services.

initialize([options]) ⇒ Promise.<any>

Initialize proxy

Kind: instance method of AbstractProxyService

ParamTypeDescription
[options]Object

Some options...

send(message, [options])

Send a message

Kind: instance method of AbstractProxyService

ParamTypeDescription
messageObject
[options]Object

Some options...

receive(message, [options])

Receive a message

Kind: instance method of AbstractProxyService

ParamTypeDescription
messageObject
[options]Object

Some options...

_initialize(resolve, reject, [options])

Implementation to initialize service

Kind: instance abstract method of AbstractProxyService
Access: protected

ParamTypeDescription
resolvePromise
rejectPromise
[options]Object

Some options...

_send(message, [options])

Implementation to send a message

Kind: instance abstract method of AbstractProxyService
Access: protected

ParamTypeDescription
messageObject
[options]Object

Some options...