(logWriter io.Writer, router *wshutil.WshRouter, rpcClient *wshutil.WshRpc, isLocal bool, initialEnv map[string]string, sockName string)
| 44 | } |
| 45 | |
| 46 | func MakeRemoteRpcServerImpl(logWriter io.Writer, router *wshutil.WshRouter, rpcClient *wshutil.WshRpc, isLocal bool, initialEnv map[string]string, sockName string) *ServerImpl { |
| 47 | return &ServerImpl{ |
| 48 | LogWriter: logWriter, |
| 49 | Router: router, |
| 50 | RpcClient: rpcClient, |
| 51 | IsLocal: isLocal, |
| 52 | InitialEnv: initialEnv, |
| 53 | JobManagerMap: make(map[string]*JobManagerConnection), |
| 54 | SockName: sockName, |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | func (*ServerImpl) WshServerImpl() {} |
| 59 |
no outgoing calls
no test coverage detected