public TypedRequestProcessProxy(IServerProcessProxy serverProcessProxy, IIpcRequestIdFactory ipcRequestIdFactory) { _serverProcessProxy = serverProcessProxy; _ipcRequestIdFactory = ipcRequestIdFactory; _serverProcessProxy.EventReceived += ServerProcessProxyOnEventReceived; _serverProcessProxy.ProcessStarted += ServerProcessProxyOnProcessStarted; _serverProcessProxy.ProcessFatalError += ServerProcessProxyOnProcessFatalError; }
public TypedRequestProcessProxy(IServerProcessProxy serverProcessProxy, IIpcRequestIdFactory ipcRequestIdFactory) { _serverProcessProxy = serverProcessProxy; _ipcRequestIdFactory = ipcRequestIdFactory; _serverProcessProxy.EventReceived += ServerProcessProxyOnEventReceived; }
public TypedEventSender(IIpcResponseQueue responseQueue, IIpcRequestIdFactory requestIdFactory) { _responseQueue = responseQueue; _requestIdFactory = requestIdFactory; }