io.zbus.transport.ipc.IpcClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus Show documentation
Show all versions of zbus Show documentation
a lightweight yet powerful MQ and RPC to build service bus
package io.zbus.transport.ipc;
import java.io.IOException;
import io.zbus.transport.AbstractClient;
import io.zbus.transport.Id;
public class IpcClient extends AbstractClient {
protected String serverAddress() {
return "ipc://named_pipe|unix_sock";
}
public synchronized void connectAsync() {
throw new IllegalStateException("Not implemented yet");
}
@Override
public void connectSync(long timeout) throws IOException, InterruptedException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy