2020-10-30 18:16:49 +00:00
|
|
|
package org.capnproto;
|
|
|
|
|
2020-10-30 18:27:21 +00:00
|
|
|
public interface Pipeline {
|
2020-11-13 17:57:49 +00:00
|
|
|
|
2020-10-30 18:16:49 +00:00
|
|
|
AnyPointer.Pipeline typelessPipeline();
|
2020-11-13 17:57:49 +00:00
|
|
|
|
|
|
|
default void cancel(Throwable exc) {
|
|
|
|
this.typelessPipeline().cancel(exc);
|
|
|
|
}
|
2020-10-30 18:16:49 +00:00
|
|
|
}
|