/** * Autogenerated by Thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package test.fixtures.basicannotations; import com.facebook.swift.codec.*; import com.facebook.swift.codec.ThriftField.Requiredness; import com.facebook.swift.service.*; import com.facebook.thrift.client.*; import com.google.common.util.concurrent.ListenableFuture; import java.io.*; import java.util.*; @SwiftGenerated @com.facebook.swift.service.ThriftService("MyServicePrioParent") public interface MyServicePrioParent extends java.io.Closeable { @com.facebook.swift.service.ThriftService("MyServicePrioParent") public interface Async extends java.io.Closeable { @java.lang.Override void close(); @ThriftMethod(value = "ping") ListenableFuture ping(); default ListenableFuture ping( RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } default ListenableFuture> pingWrapper( RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } @ThriftMethod(value = "pong") ListenableFuture pong(); default ListenableFuture pong( RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } default ListenableFuture> pongWrapper( RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } } @java.lang.Override void close(); @ThriftMethod(value = "ping") void ping() throws org.apache.thrift.TException; default void ping( RpcOptions rpcOptions) throws org.apache.thrift.TException { throw new UnsupportedOperationException(); } default ResponseWrapper pingWrapper( RpcOptions rpcOptions) throws org.apache.thrift.TException { throw new UnsupportedOperationException(); } @ThriftMethod(value = "pong") void pong() throws org.apache.thrift.TException; default void pong( RpcOptions rpcOptions) throws org.apache.thrift.TException { throw new UnsupportedOperationException(); } default ResponseWrapper pongWrapper( RpcOptions rpcOptions) throws org.apache.thrift.TException { throw new UnsupportedOperationException(); } @com.facebook.swift.service.ThriftService("MyServicePrioParent") interface Reactive extends reactor.core.Disposable { @ThriftMethod(value = "ping") reactor.core.publisher.Mono ping(); default reactor.core.publisher.Mono ping(RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } default reactor.core.publisher.Mono> pingWrapper(RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } @ThriftMethod(value = "pong") reactor.core.publisher.Mono pong(); default reactor.core.publisher.Mono pong(RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } default reactor.core.publisher.Mono> pongWrapper(RpcOptions rpcOptions) { throw new UnsupportedOperationException(); } } }