Package org.cometd.oort
Interface OortMasterLong.Callback
-
- All Known Implementing Classes:
OortMasterLong.Callback.Adapter
- Enclosing class:
- OortMasterLong
public static interface OortMasterLong.CallbackCallback invoked when the result of the operation on the counter is available, or when the operation failed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classOortMasterLong.Callback.AdapterEmpty implementation ofOortMasterLong.Callback
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfailed(java.lang.Object failure)Callback method invoked when the operation on the counter failed.voidsucceeded(java.lang.Long result)Callback method invoked when the operation on the counter succeeded.
-
-
-
Method Detail
-
succeeded
void succeeded(java.lang.Long result)
Callback method invoked when the operation on the counter succeeded.- Parameters:
result- the result of the operation
-
failed
void failed(java.lang.Object failure)
Callback method invoked when the operation on the counter failed.- Parameters:
failure- the failure object
-
-