Interface KeyValueProtocol.Callback
-
- All Superinterfaces:
KeyValueProtocol
- Enclosing interface:
- KeyValueProtocol
public static interface KeyValueProtocol.Callback extends KeyValueProtocol
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.camel.quarkus.component.avro.rpc.it.specific.generated.KeyValueProtocol
KeyValueProtocol.Callback
-
-
Field Summary
Fields Modifier and Type Field Description static org.apache.avro.ProtocolPROTOCOL
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidget(Key key, org.apache.avro.ipc.Callback<Value> callback)voidput(Key key, Value value, org.apache.avro.ipc.Callback<Void> callback)-
Methods inherited from interface org.apache.camel.quarkus.component.avro.rpc.it.specific.generated.KeyValueProtocol
get, put
-
-
-
-
Method Detail
-
put
void put(Key key, Value value, org.apache.avro.ipc.Callback<Void> callback) throws IOException
- Throws:
IOException- The async call could not be completed.
-
get
void get(Key key, org.apache.avro.ipc.Callback<Value> callback) throws IOException
- Throws:
IOException- The async call could not be completed.
-
-