capnproto-java-rpc/runtime/src/main/java/org/capnproto/RequestHook.java

10 lines
208 B
Java
Raw Normal View History

package org.capnproto;
import java.util.concurrent.CompletableFuture;
interface RequestHook {
RemotePromise<AnyPointer.Reader> send();
CompletableFuture<?> sendStreaming();
Object getBrand();
}