All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fisco.bcos.web3j.protocol.ipc.WindowsIpcService Maven / Gradle / Ivy

There is a newer version: 2.6.6
Show newest version
package org.fisco.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 - 2024 Weber Informatics LLC | Privacy Policy