ee-soa-discovery-sameprocess
v0.1.3
Published
Static discovery for the EE SOA, returns always the local process as result
Downloads
2
Readme
ee-soa-discovery-sameprocess
Static discovery for the EE SOA, returns always the local process as result
installation
npm install ee-soa-discovery-sameprocess
build status
usage
This module will always respond that the service can be found in the same process, it ignores any input prvided.
var Discovery = require('ee-soa-discovery-sameprocess')
, instance = new Discovery();
instance.discover('appID', 'serviceID', function(err, response){
log(response.transport === 'local'); // always true
});