org.bcos.web3j.protocol.ipc.WindowsIpcService Maven / Gradle / Ivy
package org.bcos.web3j.protocol.ipc;
/**
* Windows named pipe implementation of our services API.
*
* This implementation is experimental.
*/
public class WindowsIpcService extends IpcService {
public WindowsIpcService(String ipcSocketPath) {
super(new WindowsNamedPipe(ipcSocketPath));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy