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

com.cryptape.cita.protocol.ipc.UnixIpcService Maven / Gradle / Ivy

The newest version!
package com.cryptape.cita.protocol.ipc;

/**
 * Unix domain socket implementation of our services API.
 */
public class UnixIpcService extends IpcService {

    public UnixIpcService(String ipcSocketPath) {
        super(new UnixDomainSocket(ipcSocketPath));
    }

    public UnixIpcService(String ipcSocketPath, boolean includeRawResponse) {
        super(new UnixDomainSocket(ipcSocketPath), includeRawResponse);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy