Package org.apache.zookeeper
Interface AsyncCallback.EphemeralsCallback
-
- All Superinterfaces:
AsyncCallback
- Enclosing interface:
- AsyncCallback
public static interface AsyncCallback.EphemeralsCallback extends AsyncCallback
This callback is used to process the getEphemerals results from a single getEphemerals call.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.zookeeper.AsyncCallback
AsyncCallback.ACLCallback, AsyncCallback.AllChildrenNumberCallback, AsyncCallback.Children2Callback, AsyncCallback.ChildrenCallback, AsyncCallback.Create2Callback, AsyncCallback.DataCallback, AsyncCallback.EphemeralsCallback, AsyncCallback.MultiCallback, AsyncCallback.StatCallback, AsyncCallback.StringCallback, AsyncCallback.VoidCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processResult(int rc, java.lang.Object ctx, java.util.List<java.lang.String> paths)
-
-
-
Method Detail
-
processResult
void processResult(int rc, java.lang.Object ctx, java.util.List<java.lang.String> paths)
- Parameters:
rc
- The return code or the result of the call.ctx
- Whatever context object that we passed to asynchronous calls.paths
- The path that we passed to asynchronous calls.
-
-