1 18 package org.apache.activemq.advisory; 19 20 import org.apache.activemq.command.ActiveMQDestination; 21 import org.apache.activemq.command.ConsumerId; 22 23 28 public class ConsumerStoppedEvent extends ConsumerEvent { 29 30 private static final long serialVersionUID = 5378835541037193206L; 31 32 public ConsumerStoppedEvent(ConsumerEventSource source, ActiveMQDestination destination, ConsumerId consumerId, int count) { 33 super(source, destination, consumerId, count); 34 } 35 36 public boolean isStarted() { 37 return false; 38 } 39 40 } 41 | Popular Tags |