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

    Modifier and Type
    Method
    Description
    void
    Notification that a single item put has completed
    void
    Notification that a multi item put has completed
  • Method Details

    • 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