Esempio n. 1
0
  public void individualCancel(final long consumerID, final long messageID, boolean failed)
      throws Exception {
    ServerConsumer consumer = consumers.get(consumerID);

    if (consumer != null) {
      consumer.individualCancel(messageID, failed);
    }
  }