2020-09-27 22:09:22 +00:00
|
|
|
package org.capnproto;
|
|
|
|
|
2020-10-13 16:19:24 +00:00
|
|
|
import java.util.concurrent.CompletionStage;
|
2020-10-08 13:17:02 +00:00
|
|
|
|
2020-10-08 14:35:15 +00:00
|
|
|
public interface RequestHook {
|
2020-09-27 22:09:22 +00:00
|
|
|
RemotePromise<AnyPointer.Reader> send();
|
2020-10-13 16:19:24 +00:00
|
|
|
CompletionStage<?> sendStreaming();
|
2020-09-27 22:09:22 +00:00
|
|
|
Object getBrand();
|
|
|
|
}
|