KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > activemq > management > JMSProducerStatsImpl


1 /**
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one or more
4  * contributor license agreements. See the NOTICE file distributed with
5  * this work for additional information regarding copyright ownership.
6  * The ASF licenses this file to You under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with
8  * the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */

18 package org.apache.activemq.management;
19
20 import javax.jms.Destination JavaDoc;
21
22 import org.apache.activemq.util.IndentPrinter;
23
24 /**
25  * Statistics for a JMS producer
26  *
27  * @version $Revision: 1.2 $
28  */

29 public class JMSProducerStatsImpl extends JMSEndpointStatsImpl {
30     private String JavaDoc destination;
31
32     public JMSProducerStatsImpl(JMSSessionStatsImpl sessionStats, Destination JavaDoc destination) {
33         super(sessionStats);
34         if (destination != null) {
35             this.destination = destination.toString();
36         }
37     }
38
39     public JMSProducerStatsImpl(CountStatisticImpl messageCount, CountStatisticImpl pendingMessageCount, CountStatisticImpl expiredMessageCount, TimeStatisticImpl messageWaitTime, TimeStatisticImpl messageRateTime, String JavaDoc destination) {
40         super(messageCount, pendingMessageCount, expiredMessageCount, messageWaitTime, messageRateTime);
41         this.destination = destination;
42     }
43
44     public String JavaDoc getDestination() {
45         return destination;
46     }
47
48     public String JavaDoc toString() {
49         StringBuffer JavaDoc buffer = new StringBuffer JavaDoc();
50         buffer.append("producer ");
51         buffer.append(destination);
52         buffer.append(" { ");
53         buffer.append(super.toString());
54         buffer.append(" }");
55         return buffer.toString();
56     }
57
58     public void dump(IndentPrinter out) {
59         out.printIndent();
60         out.print("producer ");
61         out.print(destination);
62         out.println(" {");
63         out.incrementIndent();
64
65         super.dump(out);
66
67         out.decrementIndent();
68         out.printIndent();
69         out.println("}");
70     }
71 }
72
Popular Tags