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

io.neow3j.protocol.ipc.WindowsIpcService Maven / Gradle / Ivy

package io.neow3j.protocol.ipc;

/**
 * Windows named pipe implementation of the Service API.
 *
 * 

This implementation is experimental. */ public class WindowsIpcService extends IpcService { private final String ipcSocketPath; public WindowsIpcService(String ipcSocketPath) { super(); this.ipcSocketPath = ipcSocketPath; } public WindowsIpcService(String ipcSocketPath, boolean includeRawResponse) { super(includeRawResponse); this.ipcSocketPath = ipcSocketPath; } @Override protected IOFacade getIO() { return new WindowsNamedPipe(ipcSocketPath); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy