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

io.zbus.transport.ipc.IpcClient Maven / Gradle / Ivy

There is a newer version: 1.0.0-b1
Show newest version
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