Ejemplo n.º 1
0
 public RpcClientProxyInterceptor(IServiceIdGenerator serviceIdGenerator,
                                  IServiceEntryLocator serviceEntryLocator,
                                  ICurrentServiceKey currentServiceKey,
                                  IServiceExecutor serviceExecutor)
 {
     _serviceIdGenerator  = serviceIdGenerator;
     _serviceEntryLocator = serviceEntryLocator;
     _currentServiceKey   = currentServiceKey;
     _serviceExecutor     = serviceExecutor;
 }
Ejemplo n.º 2
0
 public LmsMiddleware(RequestDelegate next,
                      IServiceEntryLocator serviceEntryLocator)
 {
     _next = next;
     _serviceEntryLocator = serviceEntryLocator;
 }
Ejemplo n.º 3
0
 public DefaultServiceMessageReceivedHandler(IServiceEntryLocator serviceEntryLocator)
 {
     _serviceEntryLocator = serviceEntryLocator;
 }
Ejemplo n.º 4
0
 public DefaultServiceInvoker(IServiceEntryLocator locator, ILogger <DefaultServiceInvoker> logger)
 {
     _entryLocator = locator;
     _logger       = logger;
 }