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

com.citahub.cita.protocol.ipc.WindowsIpcService Maven / Gradle / Ivy

The newest version!
package com.citahub.cita.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)); } public WindowsIpcService(String ipcSocketPath, boolean includeRawResponse) { super(new WindowsNamedPipe(ipcSocketPath), includeRawResponse); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy