Stability: 3 - Stable
About
Documentation --> FutoIn Guide.
FutoIn Invoker is request initiating part in FutoIn microservice concept.
It invokes a FutoIn interface method as described in FTN3: FutoIn Interface Definition.
Invoker is not necessary a client - e.g. server may initiate request for callback to client.
Unlike HTTP REST API, FutoIn perfectly fits for "all-in-one" process model with efficient internal calls.
Invoker is heavily optimized to reliably process input and output data checks.
Strict FutoIn interface (iface) definition and transport protocol is defined in FTN3 spec mentioned above.
As it is based on JSON, both client and server can be implemented in a few minutes almost in
any technology. However, Invoker and Executor concept provide significant benefits for
efficiency, reliability and error control.
The core of invoker is CCM - Connection and Credentials Manager.
It has the following advantages:
- A single place to configure & hold sensitive data (like credentials)
- Transparent connection management (no need for special connect/request/response/disconnect logic)
- Efficient use of communications (keep-alive, persistent WebSockets channels,
channel-based instead of message-based security, etc.)
- Inversion of Control / Dependency Injection - implementations are referenced by
static names like "mymodule.some.service" in code. The rest is hidden in CCM configuration.
- Easy HMAC-based message signature and user authentication
- Security enforcement
- CCM-wide request limit zones with both requests/period and max simultaneous limits
The primary communication channel is WebSockets. Large raw data upload and download
is also supported through automatic fallback to HTTP(S).
SimpleCCM
- a light version without heavy processing of iface definition (ideal for browser).AdvancedCCM
- full featured CCM (extends SimpleCCM).
Communication methods:
- HTTP/HTTPS - remote calls
- WS/WSS - WebSockets remote calls with bi-directional sockets
- HTML5 Web Messaging - same- and cross-origin local calls inside Browser through window.postMessage() API
- Same Process - optimized for single instance deployment
Message coding formats:
- JSON - default and mandatory
- MessagePack (MPCK) - default for interfaces with
BinaryData
constraint - CBOR - also available, but shows 10x worse performance compared to MessagePack
Note: Invoker and Executor are platform/technology-neutral concepts. The implementation
is already available in JS and PHP.
Reference implementation of:
FTN7: FutoIn Invoker Concept
Version: 1.7
FTN3: FutoIn Interface Definition
Version: 1.9
FTN3.1: FutoIn Interface - Common Types
Version: 1.0
FTN5: FutoIn HTTP integration
Version: 1.3
FTN9: FutoIn Interface - AuditLog
Version: 1.0 (client)
FTN14: FutoIn Cache
Version: 1.0 (client)
FTN4: FutoIn Interface - Ping-Pong
Version: 1.0 (client)
Author: Andrey Galkin
Documentation --> FutoIn Guide
Installation for Node.js
Command line:
$ npm install futoin-invoker --save
or
$ yarn add futoin-invoker
Hint: checkout FutoIn CID for all tools setup.
All public classes can be accessed through module:
const AdvancedCCM = require('futoin-invoker').AdvancedCCM;
or included modular way, e.g.:
const AdvancedCCM = require('futoin-invoker/AdvancedCCM');
Browser installation
Pre-built ES5 CJS modules are available under es5/
. These modules
can be used with webpack
without transpiler - default "browser" entry point
points to ES5 version.
Webpack dists are also available under dist/
folder, but their usage should be limited
to sites without build process.
Warning: check AsyncSteps and AsyncEvent polyfill for older browsers.
The following globals are available:
- SimpleCCM - global reference to futoin-invoker.SimpleCCM class
- AdvancedCCM - global reference to futoin-invoker.AdvancedCCM class
- futoin.Invoker - global reference to futoin-invoker module
Examples
NOTE: more complex examples should be found in futoin-executor
Call remote function with SimpleCCM
var async_steps = require( 'futoin-asyncsteps' );
var SimpleCCM = require( 'futoin-invoker/SimpleCCM' );
var ccm = new SimpleCCM();
async_steps()
.add(
function( as ){
ccm.register( as, 'localone', 'some.iface:1.0',
'https://localhost/some/path' );
ccm.register( as, 'localtwo', 'other.iface:1.0',
'https://localhost/some/path',
'user:pass' );
as.add( function( as ){
var localone = ccm.iface( 'localone' );
var localtwo = ccm.iface( 'localtwo' );
localone.call( as, 'somefunc', {
arg1 : 1,
arg2 : 'abc',
arg3 : true,
} );
as.add( function( as, res ){
console.log( res.result1, res.result2 );
} );
} );
},
function( as, err )
{
console.log( err + ': ' + as.state.error_info );
console.log( as.state.last_exception.stack );
}
)
.execute();
Call remote function with AdvancedCCM
var async_steps = require( 'futoin-asyncsteps' );
var invoker = require( 'futoin-invoker' );
var some_iface_v1_0 = {
"iface" : "some.iface",
"version" : "1.0",
"ftn3rev" : "1.1",
"funcs" : {
"somefunc" : {
"params" : {
"arg1" : {
"type" : "integer"
},
"arg2" : {
"type" : "string"
},
"arg3" : {
"type" : "boolean"
}
},
"result" : {
"result1" : {
"type" : "number"
},
"result2" : {
"type" : "any"
}
},
"throws" : [
"MyError"
]
}
},
"requires" : [
"SecureChannel",
"AllowAnonymous"
]
};
var other_iface_v1_0 = {
"iface" : "other.iface",
"version" : "1.0",
"ftn3rev" : "1.1"
}
var ccm = new invoker.AdvancedCCM({
specDirs : [ __dirname + '/specs', some_iface_v1_0, other_iface_v1_0 ]
});
async_steps()
.add(
function( as ){
ccm.register( as, 'localone',
'some.iface:1.0', 'https://localhost/some/path' );
ccm.register( as, 'localtwo',
'other.iface:1.0', 'https://localhost/some/path',
'user:pass' );
as.add( function( as ){
var localone = ccm.iface( 'localone' );
var localtwo = ccm.iface( 'localtwo' );
localone.somefunc( as, 1, 'abc', true );
as.add( function( as, res ){
console.log( res.result1, res.result2 );
} );
} );
},
function( as, err )
{
console.log( err + ': ' + as.state.error_info );
console.log( as.state.last_exception.stack );
}
)
.execute();
API documentation
The concept is described in FutoIn specification: FTN7: Interface Invoker Concept v1.x
Modules
- futoin-invoker
Classes
- AdvancedCCM ⇐
SimpleCCM
Advanced CCM - Reference Implementation
- CacheFace ⇐
NativeIface
Cache Native interface
Register with CacheFace.register()
NOTE: it is not directly available in Invoker module
interface, include separately
- InterfaceInfo
FutoIn interface info
- LogFace ⇐
NativeIface
AuditLog Native interface
Register with LogFace.register().
NOTE: it is not directly available Invoker module
interface, include separately
- NativeIface
Native Interface for FutoIn ifaces
- PingFace
Base for FTN4 ping-based interfaces
- SimpleCCM
Simple CCM - Reference Implementation
Base Connection and Credentials Manager with limited error control
- SpecTools
- AdvancedCCMOptions ⇐
SimpleCCMOptions
- SimpleCCMOptions
Members
- SimpleCCM
window.SimpleCCM - Browser-only reference to futoin-asyncsteps.SimpleCCM
- SimpleCCM
window.SimpleCCM - Browser-only reference to futoin-asyncsteps.SimpleCCM
- SimpleCCM
futoin.SimpleCCM - Browser-only reference to futoin-asyncsteps.SimpleCCM
- AdvancedCCM
window.AdvancedCCM - Browser-only reference to futoin-asyncsteps.AdvancedCCM
- AdvancedCCM
futoin.AdvancedCCM - Browser-only reference to futoin-asyncsteps.AdvancedCCM
- Invoker
futoin.Invoker - Browser-only reference to futoin-invoker module
- FutoInInvoker
window.FutoInInvoker - Browser-only reference to futoin-invoker module
futoin-invoker
Advanced CCM - Reference Implementation
Kind: global class
Extends: SimpleCCM
See
new AdvancedCCM(options)
Param | Type | Description |
---|
options | object | see AdvancedCCMOptions |
advancedCCM.register(as, name, ifacever, endpoint, [credentials], [options])
Register standard MasterService end-point (adds steps to as)
Kind: instance method of AdvancedCCM
Overrides: register
Emits: register
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps instance as registration may be waiting for external resources |
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
endpoint | string | URI OR any other resource identifier of function( ccmimpl, info ) returning iface implementing peer, accepted by CCM implementation OR instance of Executor |
[credentials] | string | optional, authentication credentials: 'master' - enable MasterService authentication logic (Advanced CCM only) '{user}:{clear-text-password}' - send as is in the 'sec' section NOTE: some more reserved words and/or patterns can appear in the future |
[options] | object | fine tune global CCM options per endpoint |
advancedCCM.iface(name) ⇒ NativeInterface
Get native interface wrapper for invocation of iface methods
Kind: instance method of AdvancedCCM
Overrides: iface
Returns: NativeInterface
- - native interface
Param | Type | Description |
---|
name | string | see register() |
advancedCCM.unRegister(name)
Unregister previously registered interface (should not be used, unless really needed)
Kind: instance method of AdvancedCCM
Overrides: unRegister
Emits: unregister
Param | Type | Description |
---|
name | string | see register() |
advancedCCM.defense() ⇒ object
Shortcut to iface( "#defense" )
Kind: instance method of AdvancedCCM
Overrides: defense
Returns: object
- native defense interface
advancedCCM.log() ⇒ object
Returns extended API interface as defined in FTN9 IF AuditLogService
Kind: instance method of AdvancedCCM
Overrides: log
Returns: object
- FTN9 native face
advancedCCM.cache([bucket]) ⇒ object
Returns extended API interface as defined in [FTN14 Cache][]
Kind: instance method of AdvancedCCM
Overrides: cache
Returns: object
- FTN14 native face
Param | Type | Default | Description |
---|
[bucket] | string | "default" | cache bucket name |
advancedCCM.assertIface(name, ifacever)
Assert that interface registered by name matches major version and minor is not less than required.
This function must generate fatal error and forbid any further execution
Kind: instance method of AdvancedCCM
Overrides: assertIface
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
advancedCCM.alias(name, alias)
Alias interface name with another name
Kind: instance method of AdvancedCCM
Overrides: alias
Emits: register
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
alias | string | alternative name for registered interface |
advancedCCM.close()
Shutdown CCM (close all active comms)
Kind: instance method of AdvancedCCM
Overrides: close
Emits: close
advancedCCM.limitZone(name, options)
Configure named AsyncSteps Limiter instance
Kind: instance method of AdvancedCCM
Overrides: limitZone
Param | Type | Description |
---|
name | string | zone name |
options | object | options to pass to Limiter c-tor |
"register"
CCM regiser event. Fired on new interface registration.
( name, ifacever, info )
Kind: event emitted by AdvancedCCM
Overrides: register
"unregister"
CCM regiser event. Fired on interface unregistration.
( name, info )
Kind: event emitted by AdvancedCCM
Overrides: unregister
"close"
CCM close event. Fired on CCM shutdown.
Kind: event emitted by AdvancedCCM
Overrides: close
Cache Native interface
Register with CacheFace.register()
NOTE: it is not directly available in Invoker module
interface, include separately
Kind: global class
Extends: NativeIface
new CacheFace(_ccm, info)
Param | Type | Description |
---|
_ccm | SimpleCCM | CCM instance |
info | object | internal info |
cacheFace.getOrSet(as, key_prefix, callable, params, ttl_ms)
Get or Set cached value
NOTE: the actual cache key is formed with concatenation of key_prefix and join
of params values
Kind: instance method of CacheFace
Param | Type | Description |
---|
as | AsyncSteps | step interface |
key_prefix | string | unique key prefix |
callable | function | func( as, params.. ) - a callable which is called to generated value on cache miss |
params | Array | parameters to be passed to callable |
ttl_ms | integer | time to live in ms to use, if value is set on cache miss |
Get interface info
Kind: instance method of CacheFace
Overrides: ifaceInfo
Returns: InterfaceInfo
- - interface info
cacheFace.bindDerivedKey(as)
Results with DerivedKeyAccessor through as.success()
Kind: instance method of CacheFace
Overrides: bindDerivedKey
Param | Type | Description |
---|
as | AsyncSteps | step interface |
"connect"
Fired when interface establishes connection.
Kind: event emitted by CacheFace
Overrides: connect
"disconnect"
Fired when interface connection is closed.
Kind: event emitted by CacheFace
Overrides: disconnect
"close"
Interface close event. Fired on interface unregistration.
Kind: event emitted by CacheFace
Overrides: close
"commError"
Interface communication error. Fired during call processing.
( error_info, rawreq )
Kind: event emitted by CacheFace
Overrides: commError
CacheFace.register(as, ccm, name, endpoint, [credentials], [options])
Cache Native interface registration helper
Kind: static method of CacheFace
Param | Type | Default | Description |
---|
as | AsyncSteps | | step interface |
ccm | AdvancedCCM | | CCM instance |
name | string | | registration name for CCM |
endpoint | string | | endpoint URL |
[credentials] | * |
| see CCM register() |
[options] | object | {} | registration options |
[options.version] | string | "1.0" | iface version |
[options.ttl_ms] | integer | 1000 | default TTL |
InterfaceInfo
FutoIn interface info
Kind: global class
new InterfaceInfo(raw_info)
Param | Type | Description |
---|
raw_info | object | futoin spec as is |
interfaceInfo.name() ⇒ string
Get FutoIn interface name
Kind: instance method of InterfaceInfo
Returns: string
- name
interfaceInfo.version() ⇒ string
Get FutoIn interface version
Kind: instance method of InterfaceInfo
Returns: string
- version
interfaceInfo.inherits() ⇒ string
Get list of inherited interfaces starting from the most derived, may be null
Kind: instance method of InterfaceInfo
Returns: string
- inherited interface name-ver
interfaceInfo.funcs() ⇒ object
Get list of available functions, may be null
Kind: instance method of InterfaceInfo
Returns: object
- list of functions
interfaceInfo.constraints() ⇒ array
Get list of interface constraints, may be null
Kind: instance method of InterfaceInfo
Returns: array
- list of constraints
AuditLog Native interface
Register with LogFace.register().
NOTE: it is not directly available Invoker module
interface, include separately
Kind: global class
Extends: NativeIface
logFace.msg(lvl, txt)
Log message
Kind: instance method of LogFace
Param | Type | Description |
---|
lvl | string | debug |
txt | string | message to log |
logFace.hexdump(lvl, txt, data)
Log message
Kind: instance method of LogFace
Param | Type | Description |
---|
lvl | string | debug |
txt | string | message to log |
data | string | raw data |
logFace.debug(txt)
Log message in debug level
Kind: instance method of LogFace
Param | Type | Description |
---|
txt | string | message to log |
logFace.info(txt)
Log message in info level
Kind: instance method of LogFace
Param | Type | Description |
---|
txt | string | message to log |
logFace.warn(txt)
Log message in warn level
Kind: instance method of LogFace
Param | Type | Description |
---|
txt | string | message to log |
logFace.error(txt)
Log message in error level
Kind: instance method of LogFace
Param | Type | Description |
---|
txt | string | message to log |
logFace.security(txt)
Log message in security level
Kind: instance method of LogFace
Param | Type | Description |
---|
txt | string | message to log |
Get interface info
Kind: instance method of LogFace
Overrides: ifaceInfo
Returns: InterfaceInfo
- - interface info
logFace.bindDerivedKey(as)
Results with DerivedKeyAccessor through as.success()
Kind: instance method of LogFace
Overrides: bindDerivedKey
Param | Type | Description |
---|
as | AsyncSteps | step interface |
"connect"
Fired when interface establishes connection.
Kind: event emitted by LogFace
Overrides: connect
"disconnect"
Fired when interface connection is closed.
Kind: event emitted by LogFace
Overrides: disconnect
"close"
Interface close event. Fired on interface unregistration.
Kind: event emitted by LogFace
Overrides: close
"commError"
Interface communication error. Fired during call processing.
( error_info, rawreq )
Kind: event emitted by LogFace
Overrides: commError
LogFace.LVL_DEBUG
Debug log level
Kind: static constant of LogFace
LogFace.LVL_INFO
Info log level
Kind: static constant of LogFace
LogFace.LVL_WARN
Warn log level
Kind: static constant of LogFace
LogFace.LVL_ERROR
Error log level
Kind: static constant of LogFace
LogFace.LVL_SECURITY
Security log level
Kind: static constant of LogFace
LogFace.register(as, ccm, endpoint, [credentials], [options])
AuditLog Native interface registration helper
Kind: static method of LogFace
Param | Type | Default | Description |
---|
as | AsyncSteps | | step interface |
ccm | AdvancedCCM | | CCM instance |
endpoint | string | | endpoint URL |
[credentials] | * |
| see CCM register() |
[options] | object | {} | registration options |
[options.version] | string | "1.0" | iface version |
NativeIface
Native Interface for FutoIn ifaces
Kind: global class
new NativeIface(ccmimpl, info)
Get interface info
Kind: instance method of NativeIface
Returns: InterfaceInfo
- - interface info
nativeIface.bindDerivedKey(as)
Results with DerivedKeyAccessor through as.success()
Kind: instance method of NativeIface
Param | Type | Description |
---|
as | AsyncSteps | step interface |
"connect"
Fired when interface establishes connection.
Kind: event emitted by NativeIface
"disconnect"
Fired when interface connection is closed.
Kind: event emitted by NativeIface
"close"
Interface close event. Fired on interface unregistration.
Kind: event emitted by NativeIface
"commError"
Interface communication error. Fired during call processing.
( error_info, rawreq )
Kind: event emitted by NativeIface
NativeIface._specs
Must be object with version => spec pairs in child class, if set.
Kind: static property of NativeIface
NativeIface._specs_module_prefix
Must be module name prefix, example: 'MyModule/specs/name_'.
If version 1.0 is requested then spec is loaded from
'MyModule/specs/name_1_0'
Kind: static property of NativeIface
NativeIface.spec(version) ⇒ object
Get hardcoded iface definition, if available.
Kind: static method of NativeIface
Returns: object
- interface spec of required version
Note: this helper is designed for derived native interfaces
which define _specs or _specs_module_prefix static members.
Param | Type | Description |
---|
version | string | iface version |
PingFace
Base for FTN4 ping-based interfaces
Kind: global class
PingFace.register(as, ccm, name, endpoint, [credentials], [options])
Register ping interface
Kind: static method of PingFace
Note: Iface spec is embedded
Param | Type | Default | Description |
---|
as | AsyncSteps | | step interface |
ccm | AdvancedCCM | | CCM instance |
name | string | | registration name for CCM |
endpoint | string | | endpoint URL |
[credentials] | * |
| see CCM register() |
[options] | object | {} | registration options |
[options.version] | string | "1.0" | iface version |
SimpleCCM
Simple CCM - Reference Implementation
Base Connection and Credentials Manager with limited error control
Kind: global class
See
new SimpleCCM([options])
Param | Type | Description |
---|
[options] | object | map of options |
simpleCCM.register(as, name, ifacever, endpoint, [credentials], [options])
Register standard MasterService end-point (adds steps to as)
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps instance as registration may be waiting for external resources |
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
endpoint | string | URI OR any other resource identifier of function( ccmimpl, info ) returning iface implementing peer, accepted by CCM implementation OR instance of Executor |
[credentials] | string | optional, authentication credentials: 'master' - enable MasterService authentication logic (Advanced CCM only) '{user}:{clear-text-password}' - send as is in the 'sec' section NOTE: some more reserved words and/or patterns can appear in the future |
[options] | object | fine tune global CCM options per endpoint |
simpleCCM.iface(name) ⇒ NativeInterface
Get native interface wrapper for invocation of iface methods
Kind: instance method of SimpleCCM
Returns: NativeInterface
- - native interface
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.unRegister(name)
Unregister previously registered interface (should not be used, unless really needed)
Kind: instance method of SimpleCCM
Emits: unregister
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.defense() ⇒ object
Shortcut to iface( "#defense" )
Kind: instance method of SimpleCCM
Returns: object
- native defense interface
simpleCCM.log() ⇒ object
Returns extended API interface as defined in FTN9 IF AuditLogService
Kind: instance method of SimpleCCM
Returns: object
- FTN9 native face
simpleCCM.cache([bucket]) ⇒ object
Returns extended API interface as defined in [FTN14 Cache][]
Kind: instance method of SimpleCCM
Returns: object
- FTN14 native face
Param | Type | Default | Description |
---|
[bucket] | string | "default" | cache bucket name |
simpleCCM.assertIface(name, ifacever)
Assert that interface registered by name matches major version and minor is not less than required.
This function must generate fatal error and forbid any further execution
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
simpleCCM.alias(name, alias)
Alias interface name with another name
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
alias | string | alternative name for registered interface |
simpleCCM.close()
Shutdown CCM (close all active comms)
Kind: instance method of SimpleCCM
Emits: close
simpleCCM.limitZone(name, options)
Configure named AsyncSteps Limiter instance
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | zone name |
options | object | options to pass to Limiter c-tor |
"register"
CCM regiser event. Fired on new interface registration.
( name, ifacever, info )
Kind: event emitted by SimpleCCM
"unregister"
CCM regiser event. Fired on interface unregistration.
( name, info )
Kind: event emitted by SimpleCCM
"close"
CCM close event. Fired on CCM shutdown.
Kind: event emitted by SimpleCCM
SimpleCCM.SAFE_PAYLOAD_LIMIT
Maximum FutoIn message payload size (not related to raw data)
Kind: static constant of SimpleCCM
Default: 65536
SimpleCCM.SVC_RESOLVER
Runtime iface resolution v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_AUTH
AuthService v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_DEFENSE
Defense system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_ACL
Access Control system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_LOG
Audit Logging v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_CACHE_
cache v1.x iface name prefix
Kind: static constant of SimpleCCM
SpecTools
Kind: global class
- SpecTools
- new spectools()
- .enableSchemaValidator
- .STANDARD_ERRORS
.standard_errors- .loadIface(as, info, specdirs, [load_cache])
- .genHMAC(as, info, ftnreq) ⇒
Buffer
- .secureEquals(a, b) ⇒
boolean
- .secureObjectPrototype()
- .globalLoadCache() ⇒
object
- .secureEqualBuffer(a, b) ⇒
boolean
- .checkCompiledType(as, info, type, val) ⇒
Boolean
- .checkRequestMessage(as, info, name, req) ⇒
Boolean
- .checkResponseMessage(as, info, name, rsp) ⇒
Boolean
.checkParameterType(info, funcname, varname, value) ⇒ boolean
.checkResultType(as, info, funcname, varname, value)- .parseIface(as, info, specdirs, raw_spec, [load_cache])
- .checkType(info, type, val) ⇒
Boolean
- "error"
new spectools()
SpecTools
SpecTools.enableSchemaValidator
Control JSON Schema validation in development.
Kind: static property of SpecTools
Param | Type | Description |
---|
set | boolean | value to set |
SpecTools.STANDARD_ERRORS
Enumeration of standard errors
Kind: static constant of SpecTools
SpecTools.standard_errors
Deprecated
Enumeration of standard errors
Kind: static constant of SpecTools
SpecTools.loadIface(as, info, specdirs, [load_cache])
Load FutoIn iface definition.
NOTE: Browser uses XHR to load specs, Node.js searches in local fs.
Kind: static method of SpecTools
Param | Type | Description |
---|
as | AsyncSteps | step interface |
info | Object | destination object with "iface" and "version" fields already set |
specdirs | Array | each element - search path/url (string) or raw iface (object) |
[load_cache] | Object | arbitrary object to use for caching |
SpecTools.genHMAC(as, info, ftnreq) ⇒ Buffer
Generate HMAC
NOTE: for simplicity, 'sec' field must not be present
Kind: static method of SpecTools
Returns: Buffer
- Binary HMAC signature
Throws:
Param | Type | Description |
---|
as | AsyncSteps | step interface |
info | object | Interface raw info object |
ftnreq | object | Request Object |
SpecTools.secureEquals(a, b) ⇒ boolean
Secure compare to cover time-based side-channels for attacks
Kind: static method of SpecTools
Returns: boolean
- true, if match
Note: Pure JS is used in browser and crypto-based in Node.js
Param | Type | Description |
---|
a | string | first string |
b | string | second String |
SpecTools.secureObjectPrototype()
Call after loading all depedency modules.
Mitigates CVE-2018-3721 and similar.
Kind: static method of SpecTools
SpecTools.globalLoadCache() ⇒ object
Get process-wide load cache.
Kind: static method of SpecTools
Returns: object
- Global load cache instance.
SpecTools.secureEqualBuffer(a, b) ⇒ boolean
Secure compare to cover time-based side-channels for attacks
Kind: static method of SpecTools
Returns: boolean
- true, if match
Param | Type | Description |
---|
a | Buffer | first buffer |
b | Buffer | second buffer |
SpecTools.checkCompiledType(as, info, type, val) ⇒ Boolean
Check if value matches required type
Kind: static method of SpecTools
Returns: Boolean
- true on success
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps interface |
info | Object | previously loaded iface |
type | string | standard or custom iface type |
val | * | value to check |
SpecTools.checkRequestMessage(as, info, name, req) ⇒ Boolean
Check if request message is valid
Kind: static method of SpecTools
Returns: Boolean
- true on success
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps interface |
info | Object | previously loaded iface |
name | string | interface function name |
req | object | request message |
SpecTools.checkResponseMessage(as, info, name, rsp) ⇒ Boolean
Check if response message is valid
Kind: static method of SpecTools
Returns: Boolean
- true on success
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps interface |
info | Object | previously loaded iface |
name | string | interface function name |
rsp | object | response message |
SpecTools.checkParameterType(info, funcname, varname, value) ⇒ boolean
Deprecated
Check if parameter value matches required type
Kind: static method of SpecTools
Returns: boolean
- true on success
Param | Type | Description |
---|
info | Object | previously loaded iface |
funcname | string | function name |
varname | string | parameter name |
value | * | value to check |
SpecTools.checkResultType(as, info, funcname, varname, value)
Deprecated
Check if result value matches required type
Kind: static method of SpecTools
Param | Type | Description |
---|
as | AsyncSteps | step interface |
info | Object | previously loaded iface |
funcname | string | function name |
varname | string | result variable name |
value | * | value to check |
SpecTools.parseIface(as, info, specdirs, raw_spec, [load_cache])
Parse raw futoin spec (preloaded)
Kind: static method of SpecTools
Param | Type | Description |
---|
as | AsyncSteps | step interface |
info | Object | destination object with "iface" and "version" fields already set |
specdirs | Array | each element - search path/url (string) or raw iface (object) |
raw_spec | Object | iface definition object |
[load_cache] | Object | cache of already loaded interfaces |
SpecTools.checkType(info, type, val) ⇒ Boolean
Check if value matches required type
Kind: static method of SpecTools
Returns: Boolean
- true on success
Note: THIS ONE IS SLOW for debugging purposes
See: SpecTools#checkCompiledType
Param | Type | Description |
---|
info | Object | previously loaded iface |
type | string | standard or custom iface type |
val | * | value to check |
"error"
On error message for details in debugging.
Kind: event emitted by SpecTools
Kind: global class
Extends: SimpleCCMOptions
new AdvancedCCMOptions()
This is a pseudo-class for documentation purposes
NOTE: Each option can be set on global level and overriden per interface.
AdvancedCCMOptions.specDirs
Search dirs for spec definition or spec instance directly. It can
be single value or array of values. Each value is either path/URL (string) or
iface spec instance (object).
Kind: static property of AdvancedCCMOptions
Default: []
AdvancedCCMOptions.macKey
Base64 encoded key for MAC generation. See FTN8
Kind: static property of AdvancedCCMOptions
AdvancedCCMOptions.macAlgo
Hash algorithm for HMAC generation:
HMD5, HS256 (default), HS384, HS512
Kind: static property of AdvancedCCMOptions
AdvancedCCMOptions.hmacKey
Deprecated
Base64 encoded key for legacy HMAC generation. See FTN6/FTN7
Kind: static property of AdvancedCCMOptions
AdvancedCCMOptions.hmacAlgo
Deprecated
Hash algorithm for legacy HMAC generation:
MD5(default), SHA224, SHA256, SHA384, SHA512
Kind: static property of AdvancedCCMOptions
AdvancedCCMOptions.sendOnBehalfOf
Send "obf" (On Behalf Of) user information as defined in FTN3 v1.3
when invoked from Executor's request processing task
Kind: static property of AdvancedCCMOptions
Default: true
AdvancedCCMOptions.masterAuth
Instance implementing MasterAuth interface
Kind: static property of AdvancedCCMOptions
SimpleCCMOptions
Kind: global class
new SimpleCCMOptions()
This is a pseudo-class for documentation purposes.
NOTE: Each option can be set on global level and overriden per interface.
SimpleCCMOptions.callTimeoutMS
Overall call timeout (int)
Kind: static property of SimpleCCMOptions
Default: 3000
SimpleCCMOptions.prodMode
Production mode - disables some checks without compomising security
Kind: static property of SimpleCCMOptions
Default: NODE_ENV === 'production'
SimpleCCMOptions.commConfigCallback
Communication configuration callback( type, specific-args )
Kind: static property of SimpleCCMOptions
Default:
SimpleCCMOptions.executor
Client-side executor for bi-directional communication channels
Kind: static property of SimpleCCMOptions
SimpleCCMOptions.targetOrigin
browser-only. Origin of target for window.postMessage()
Kind: static property of SimpleCCMOptions
SimpleCCMOptions.retryCount
How many times to retry the call on CommError.
NOTE: actual attempt count is retryCount + 1
Kind: static property of SimpleCCMOptions
Default: 1
SimpleCCMOptions.defaultCoder
Which message coder to use by default.
Kind: static property of SimpleCCMOptions
Default: JSON
SimpleCCMOptions.binaryCoder
Which message coder to use for BinaryData interfaces.
Kind: static property of SimpleCCMOptions
Default: MPCK
SimpleCCMOptions.secureChannel
Enables marking as SecureChannel through options.
Kind: static property of SimpleCCMOptions
Default: false
SimpleCCMOptions.commConcurrency
Maximum number of concurrent requests per communication channel.
Kind: static property of SimpleCCMOptions
Default: 16
SimpleCCMOptions.messageSniffer()
Message sniffer callback( iface_info, msg, is_incomming ).
Useful for audit logging.
Kind: static method of SimpleCCMOptions
Default: dummy
SimpleCCMOptions.disconnectSniffer()
Bi-directional channel disconnect sniffer callback( iface_info ).
Useful for audit logging.
Kind: static method of SimpleCCMOptions
Default: dummy
SimpleCCM
window.SimpleCCM - Browser-only reference to futoin-asyncsteps.SimpleCCM
Kind: global variable
new SimpleCCM([options])
Param | Type | Description |
---|
[options] | object | map of options |
simpleCCM.register(as, name, ifacever, endpoint, [credentials], [options])
Register standard MasterService end-point (adds steps to as)
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps instance as registration may be waiting for external resources |
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
endpoint | string | URI OR any other resource identifier of function( ccmimpl, info ) returning iface implementing peer, accepted by CCM implementation OR instance of Executor |
[credentials] | string | optional, authentication credentials: 'master' - enable MasterService authentication logic (Advanced CCM only) '{user}:{clear-text-password}' - send as is in the 'sec' section NOTE: some more reserved words and/or patterns can appear in the future |
[options] | object | fine tune global CCM options per endpoint |
simpleCCM.iface(name) ⇒ NativeInterface
Get native interface wrapper for invocation of iface methods
Kind: instance method of SimpleCCM
Returns: NativeInterface
- - native interface
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.unRegister(name)
Unregister previously registered interface (should not be used, unless really needed)
Kind: instance method of SimpleCCM
Emits: unregister
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.defense() ⇒ object
Shortcut to iface( "#defense" )
Kind: instance method of SimpleCCM
Returns: object
- native defense interface
simpleCCM.log() ⇒ object
Returns extended API interface as defined in FTN9 IF AuditLogService
Kind: instance method of SimpleCCM
Returns: object
- FTN9 native face
simpleCCM.cache([bucket]) ⇒ object
Returns extended API interface as defined in [FTN14 Cache][]
Kind: instance method of SimpleCCM
Returns: object
- FTN14 native face
Param | Type | Default | Description |
---|
[bucket] | string | "default" | cache bucket name |
simpleCCM.assertIface(name, ifacever)
Assert that interface registered by name matches major version and minor is not less than required.
This function must generate fatal error and forbid any further execution
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
simpleCCM.alias(name, alias)
Alias interface name with another name
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
alias | string | alternative name for registered interface |
simpleCCM.close()
Shutdown CCM (close all active comms)
Kind: instance method of SimpleCCM
Emits: close
simpleCCM.limitZone(name, options)
Configure named AsyncSteps Limiter instance
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | zone name |
options | object | options to pass to Limiter c-tor |
"register"
CCM regiser event. Fired on new interface registration.
( name, ifacever, info )
Kind: event emitted by SimpleCCM
"unregister"
CCM regiser event. Fired on interface unregistration.
( name, info )
Kind: event emitted by SimpleCCM
"close"
CCM close event. Fired on CCM shutdown.
Kind: event emitted by SimpleCCM
SimpleCCM.SAFE_PAYLOAD_LIMIT
Maximum FutoIn message payload size (not related to raw data)
Kind: static constant of SimpleCCM
Default: 65536
SimpleCCM.SVC_RESOLVER
Runtime iface resolution v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_AUTH
AuthService v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_DEFENSE
Defense system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_ACL
Access Control system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_LOG
Audit Logging v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_CACHE_
cache v1.x iface name prefix
Kind: static constant of SimpleCCM
SimpleCCM
window.SimpleCCM - Browser-only reference to futoin-asyncsteps.SimpleCCM
Kind: global variable
new SimpleCCM([options])
Param | Type | Description |
---|
[options] | object | map of options |
simpleCCM.register(as, name, ifacever, endpoint, [credentials], [options])
Register standard MasterService end-point (adds steps to as)
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps instance as registration may be waiting for external resources |
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
endpoint | string | URI OR any other resource identifier of function( ccmimpl, info ) returning iface implementing peer, accepted by CCM implementation OR instance of Executor |
[credentials] | string | optional, authentication credentials: 'master' - enable MasterService authentication logic (Advanced CCM only) '{user}:{clear-text-password}' - send as is in the 'sec' section NOTE: some more reserved words and/or patterns can appear in the future |
[options] | object | fine tune global CCM options per endpoint |
simpleCCM.iface(name) ⇒ NativeInterface
Get native interface wrapper for invocation of iface methods
Kind: instance method of SimpleCCM
Returns: NativeInterface
- - native interface
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.unRegister(name)
Unregister previously registered interface (should not be used, unless really needed)
Kind: instance method of SimpleCCM
Emits: unregister
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.defense() ⇒ object
Shortcut to iface( "#defense" )
Kind: instance method of SimpleCCM
Returns: object
- native defense interface
simpleCCM.log() ⇒ object
Returns extended API interface as defined in FTN9 IF AuditLogService
Kind: instance method of SimpleCCM
Returns: object
- FTN9 native face
simpleCCM.cache([bucket]) ⇒ object
Returns extended API interface as defined in [FTN14 Cache][]
Kind: instance method of SimpleCCM
Returns: object
- FTN14 native face
Param | Type | Default | Description |
---|
[bucket] | string | "default" | cache bucket name |
simpleCCM.assertIface(name, ifacever)
Assert that interface registered by name matches major version and minor is not less than required.
This function must generate fatal error and forbid any further execution
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
simpleCCM.alias(name, alias)
Alias interface name with another name
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
alias | string | alternative name for registered interface |
simpleCCM.close()
Shutdown CCM (close all active comms)
Kind: instance method of SimpleCCM
Emits: close
simpleCCM.limitZone(name, options)
Configure named AsyncSteps Limiter instance
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | zone name |
options | object | options to pass to Limiter c-tor |
"register"
CCM regiser event. Fired on new interface registration.
( name, ifacever, info )
Kind: event emitted by SimpleCCM
"unregister"
CCM regiser event. Fired on interface unregistration.
( name, info )
Kind: event emitted by SimpleCCM
"close"
CCM close event. Fired on CCM shutdown.
Kind: event emitted by SimpleCCM
SimpleCCM.SAFE_PAYLOAD_LIMIT
Maximum FutoIn message payload size (not related to raw data)
Kind: static constant of SimpleCCM
Default: 65536
SimpleCCM.SVC_RESOLVER
Runtime iface resolution v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_AUTH
AuthService v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_DEFENSE
Defense system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_ACL
Access Control system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_LOG
Audit Logging v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_CACHE_
cache v1.x iface name prefix
Kind: static constant of SimpleCCM
SimpleCCM
futoin.SimpleCCM - Browser-only reference to futoin-asyncsteps.SimpleCCM
Kind: global variable
new SimpleCCM([options])
Param | Type | Description |
---|
[options] | object | map of options |
simpleCCM.register(as, name, ifacever, endpoint, [credentials], [options])
Register standard MasterService end-point (adds steps to as)
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps instance as registration may be waiting for external resources |
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
endpoint | string | URI OR any other resource identifier of function( ccmimpl, info ) returning iface implementing peer, accepted by CCM implementation OR instance of Executor |
[credentials] | string | optional, authentication credentials: 'master' - enable MasterService authentication logic (Advanced CCM only) '{user}:{clear-text-password}' - send as is in the 'sec' section NOTE: some more reserved words and/or patterns can appear in the future |
[options] | object | fine tune global CCM options per endpoint |
simpleCCM.iface(name) ⇒ NativeInterface
Get native interface wrapper for invocation of iface methods
Kind: instance method of SimpleCCM
Returns: NativeInterface
- - native interface
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.unRegister(name)
Unregister previously registered interface (should not be used, unless really needed)
Kind: instance method of SimpleCCM
Emits: unregister
Param | Type | Description |
---|
name | string | see register() |
simpleCCM.defense() ⇒ object
Shortcut to iface( "#defense" )
Kind: instance method of SimpleCCM
Returns: object
- native defense interface
simpleCCM.log() ⇒ object
Returns extended API interface as defined in FTN9 IF AuditLogService
Kind: instance method of SimpleCCM
Returns: object
- FTN9 native face
simpleCCM.cache([bucket]) ⇒ object
Returns extended API interface as defined in [FTN14 Cache][]
Kind: instance method of SimpleCCM
Returns: object
- FTN14 native face
Param | Type | Default | Description |
---|
[bucket] | string | "default" | cache bucket name |
simpleCCM.assertIface(name, ifacever)
Assert that interface registered by name matches major version and minor is not less than required.
This function must generate fatal error and forbid any further execution
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
simpleCCM.alias(name, alias)
Alias interface name with another name
Kind: instance method of SimpleCCM
Emits: register
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
alias | string | alternative name for registered interface |
simpleCCM.close()
Shutdown CCM (close all active comms)
Kind: instance method of SimpleCCM
Emits: close
simpleCCM.limitZone(name, options)
Configure named AsyncSteps Limiter instance
Kind: instance method of SimpleCCM
Param | Type | Description |
---|
name | string | zone name |
options | object | options to pass to Limiter c-tor |
"register"
CCM regiser event. Fired on new interface registration.
( name, ifacever, info )
Kind: event emitted by SimpleCCM
"unregister"
CCM regiser event. Fired on interface unregistration.
( name, info )
Kind: event emitted by SimpleCCM
"close"
CCM close event. Fired on CCM shutdown.
Kind: event emitted by SimpleCCM
SimpleCCM.SAFE_PAYLOAD_LIMIT
Maximum FutoIn message payload size (not related to raw data)
Kind: static constant of SimpleCCM
Default: 65536
SimpleCCM.SVC_RESOLVER
Runtime iface resolution v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_AUTH
AuthService v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_DEFENSE
Defense system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_ACL
Access Control system v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_LOG
Audit Logging v1.x
Kind: static constant of SimpleCCM
SimpleCCM.SVC_CACHE_
cache v1.x iface name prefix
Kind: static constant of SimpleCCM
AdvancedCCM
window.AdvancedCCM - Browser-only reference to futoin-asyncsteps.AdvancedCCM
Kind: global variable
new AdvancedCCM(options)
Param | Type | Description |
---|
options | object | see AdvancedCCMOptions |
advancedCCM.register(as, name, ifacever, endpoint, [credentials], [options])
Register standard MasterService end-point (adds steps to as)
Kind: instance method of AdvancedCCM
Overrides: register
Emits: register
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps instance as registration may be waiting for external resources |
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
endpoint | string | URI OR any other resource identifier of function( ccmimpl, info ) returning iface implementing peer, accepted by CCM implementation OR instance of Executor |
[credentials] | string | optional, authentication credentials: 'master' - enable MasterService authentication logic (Advanced CCM only) '{user}:{clear-text-password}' - send as is in the 'sec' section NOTE: some more reserved words and/or patterns can appear in the future |
[options] | object | fine tune global CCM options per endpoint |
advancedCCM.iface(name) ⇒ NativeInterface
Get native interface wrapper for invocation of iface methods
Kind: instance method of AdvancedCCM
Overrides: iface
Returns: NativeInterface
- - native interface
Param | Type | Description |
---|
name | string | see register() |
advancedCCM.unRegister(name)
Unregister previously registered interface (should not be used, unless really needed)
Kind: instance method of AdvancedCCM
Overrides: unRegister
Emits: unregister
Param | Type | Description |
---|
name | string | see register() |
advancedCCM.defense() ⇒ object
Shortcut to iface( "#defense" )
Kind: instance method of AdvancedCCM
Overrides: defense
Returns: object
- native defense interface
advancedCCM.log() ⇒ object
Returns extended API interface as defined in FTN9 IF AuditLogService
Kind: instance method of AdvancedCCM
Overrides: log
Returns: object
- FTN9 native face
advancedCCM.cache([bucket]) ⇒ object
Returns extended API interface as defined in [FTN14 Cache][]
Kind: instance method of AdvancedCCM
Overrides: cache
Returns: object
- FTN14 native face
Param | Type | Default | Description |
---|
[bucket] | string | "default" | cache bucket name |
advancedCCM.assertIface(name, ifacever)
Assert that interface registered by name matches major version and minor is not less than required.
This function must generate fatal error and forbid any further execution
Kind: instance method of AdvancedCCM
Overrides: assertIface
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
advancedCCM.alias(name, alias)
Alias interface name with another name
Kind: instance method of AdvancedCCM
Overrides: alias
Emits: register
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
alias | string | alternative name for registered interface |
advancedCCM.close()
Shutdown CCM (close all active comms)
Kind: instance method of AdvancedCCM
Overrides: close
Emits: close
advancedCCM.limitZone(name, options)
Configure named AsyncSteps Limiter instance
Kind: instance method of AdvancedCCM
Overrides: limitZone
Param | Type | Description |
---|
name | string | zone name |
options | object | options to pass to Limiter c-tor |
"register"
CCM regiser event. Fired on new interface registration.
( name, ifacever, info )
Kind: event emitted by AdvancedCCM
Overrides: register
"unregister"
CCM regiser event. Fired on interface unregistration.
( name, info )
Kind: event emitted by AdvancedCCM
Overrides: unregister
"close"
CCM close event. Fired on CCM shutdown.
Kind: event emitted by AdvancedCCM
Overrides: close
AdvancedCCM
futoin.AdvancedCCM - Browser-only reference to futoin-asyncsteps.AdvancedCCM
Kind: global variable
new AdvancedCCM(options)
Param | Type | Description |
---|
options | object | see AdvancedCCMOptions |
advancedCCM.register(as, name, ifacever, endpoint, [credentials], [options])
Register standard MasterService end-point (adds steps to as)
Kind: instance method of AdvancedCCM
Overrides: register
Emits: register
Param | Type | Description |
---|
as | AsyncSteps | AsyncSteps instance as registration may be waiting for external resources |
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
endpoint | string | URI OR any other resource identifier of function( ccmimpl, info ) returning iface implementing peer, accepted by CCM implementation OR instance of Executor |
[credentials] | string | optional, authentication credentials: 'master' - enable MasterService authentication logic (Advanced CCM only) '{user}:{clear-text-password}' - send as is in the 'sec' section NOTE: some more reserved words and/or patterns can appear in the future |
[options] | object | fine tune global CCM options per endpoint |
advancedCCM.iface(name) ⇒ NativeInterface
Get native interface wrapper for invocation of iface methods
Kind: instance method of AdvancedCCM
Overrides: iface
Returns: NativeInterface
- - native interface
Param | Type | Description |
---|
name | string | see register() |
advancedCCM.unRegister(name)
Unregister previously registered interface (should not be used, unless really needed)
Kind: instance method of AdvancedCCM
Overrides: unRegister
Emits: unregister
Param | Type | Description |
---|
name | string | see register() |
advancedCCM.defense() ⇒ object
Shortcut to iface( "#defense" )
Kind: instance method of AdvancedCCM
Overrides: defense
Returns: object
- native defense interface
advancedCCM.log() ⇒ object
Returns extended API interface as defined in FTN9 IF AuditLogService
Kind: instance method of AdvancedCCM
Overrides: log
Returns: object
- FTN9 native face
advancedCCM.cache([bucket]) ⇒ object
Returns extended API interface as defined in [FTN14 Cache][]
Kind: instance method of AdvancedCCM
Overrides: cache
Returns: object
- FTN14 native face
Param | Type | Default | Description |
---|
[bucket] | string | "default" | cache bucket name |
advancedCCM.assertIface(name, ifacever)
Assert that interface registered by name matches major version and minor is not less than required.
This function must generate fatal error and forbid any further execution
Kind: instance method of AdvancedCCM
Overrides: assertIface
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
ifacever | string | interface identifier and its version separated by colon |
advancedCCM.alias(name, alias)
Alias interface name with another name
Kind: instance method of AdvancedCCM
Overrides: alias
Emits: register
Param | Type | Description |
---|
name | string | unique identifier in scope of CCM instance |
alias | string | alternative name for registered interface |
advancedCCM.close()
Shutdown CCM (close all active comms)
Kind: instance method of AdvancedCCM
Overrides: close
Emits: close
advancedCCM.limitZone(name, options)
Configure named AsyncSteps Limiter instance
Kind: instance method of AdvancedCCM
Overrides: limitZone
Param | Type | Description |
---|
name | string | zone name |
options | object | options to pass to Limiter c-tor |
"register"
CCM regiser event. Fired on new interface registration.
( name, ifacever, info )
Kind: event emitted by AdvancedCCM
Overrides: register
"unregister"
CCM regiser event. Fired on interface unregistration.
( name, info )
Kind: event emitted by AdvancedCCM
Overrides: unregister
"close"
CCM close event. Fired on CCM shutdown.
Kind: event emitted by AdvancedCCM
Overrides: close
Invoker
futoin.Invoker - Browser-only reference to futoin-invoker module
Kind: global variable
FutoInInvoker
window.FutoInInvoker - Browser-only reference to futoin-invoker module
Kind: global variable
documented by jsdoc-to-markdown.