KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > walend > somnifugi > SomniConsumerReport


1 package net.walend.somnifugi;
2
3 import java.io.Serializable JavaDoc;
4
5 import java.util.Date JavaDoc;
6
7 /**
8 A quick report of the status of a SomniMessageConsumer to use for monitoring.
9
10 @author <a HREF="http://walend.net">David Walend</a> <a HREF="mailto:david@walend.net">david@walend.net</a>
11 @since alpha-0-19
12 */

13
14 @SuppressWarnings JavaDoc("serial")
15 public class SomniConsumerReport
16     implements Serializable JavaDoc
17 {
18     private final int messageCountGuess;
19     private final long pendingMessageTimestamp;
20     
21     SomniConsumerReport(int messageCountGuess,long pendingMessageTimestamp)
22     {
23         this.messageCountGuess = messageCountGuess;
24         this.pendingMessageTimestamp = pendingMessageTimestamp;
25     }
26     
27     /**
28     @return a guess at the number of messages waiting to be consumed.
29     */

30     public int getMessageCountGuess()
31     {
32         return messageCountGuess;
33     }
34     
35     /**
36     @return the time stamp on the pending message, or 0 if there is no message or time stamps are not being used.
37     */

38     public long getPendingMessageTimestamp()
39     {
40         return pendingMessageTimestamp;
41     }
42     
43     public String JavaDoc toString()
44     {
45         StringBuilder JavaDoc builder = new StringBuilder JavaDoc();
46         builder.append(Integer.toString(messageCountGuess));
47         builder.append(" pending messages");
48         if((messageCountGuess>0) && (pendingMessageTimestamp!=0))
49         {
50             builder.append(", the next one sent at ");
51             builder.append(new Date JavaDoc(pendingMessageTimestamp));
52         }
53         return builder.toString();
54     }
55 }
56
57 /*
58 Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 David Walend
59 All rights reserved.
60
61 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
62
63 Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
64
65 Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
66
67 Neither the name of the SomnifugiJMS Project, walend.net, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission from David Walend.
68
69 Credits in redistributions in source or binary forms must include a link to http://somnifugi.sourceforge.net .
70
71 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
72 The net.walend.somnifugi.sql92 package is modified code from the openmq project, https://mq.dev.java.net/ , Copyright (c) of Sun, and carries the CDDL license, repeated here: You can obtain a copy of the license at https://glassfish.dev.java.net/public/CDDLv1.0.html. See the License for the specific language governing permissions and limitations under the License.
73
74 =================================================================================
75
76 For more information and the latest version of this software, please see http://somnifugi.sourceforge.net and http://walend.net or email <a HREF="mailto:david@walend.net">david@walend.net</a>.
77
78 */

79
80
81
82
Popular Tags