org.apache.curator.framework.recipes.queue
Interface QueuePutListener<T>


public interface QueuePutListener<T>

Queue puts are done in the background. Use this listener to be notified when the put completes


Method Summary
 void putCompleted(T item)
          Notification that a single item put has completed
 void putMultiCompleted(MultiItem<T> items)
          Notification that a multi item put has completed
 

Method Detail

putCompleted

void putCompleted(T item)
Notification that a single item put has completed

Parameters:
item - the item

putMultiCompleted

void putMultiCompleted(MultiItem<T> items)
Notification that a multi item put has completed

Parameters:
items - the items


Copyright © 2011–2014 The Apache Software Foundation. All rights reserved.