hu.akarnokd.reactiverpc.RpcStreamContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akarnokd-reactive-rpc Show documentation
Show all versions of akarnokd-reactive-rpc Show documentation
akarnokd-reactive-rpc developed by David Karnok
package hu.akarnokd.reactiverpc;
import java.net.InetAddress;
import rsc.scheduler.Scheduler;
public interface RpcStreamContext {
InetAddress clientAddress();
int clientPort();
void set(String attribute, Object o);
U get(String attribute);
U get(String attribute, U defaultValue);
void remove(String attribute);
boolean has(String attribute);
T remoteAPI();
Scheduler scheduler();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy