KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > management > remote > protocol > terracotta > L1JmxReady


1 /*
2  * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.management.remote.protocol.terracotta;
5
6 import com.tc.bytes.TCByteBuffer;
7 import com.tc.io.TCByteBufferOutput;
8 import com.tc.net.protocol.tcm.MessageChannel;
9 import com.tc.net.protocol.tcm.MessageMonitor;
10 import com.tc.net.protocol.tcm.TCMessageHeader;
11 import com.tc.net.protocol.tcm.TCMessageType;
12 import com.tc.object.msg.DSOMessageBase;
13 import com.tc.object.session.SessionID;
14
15 /**
16  * Sending this network message to the L2 signals that the L1 has successfully
17  * started its JMX server and registered all of its beans, and can be connected
18  * to and interrogated by the L2 server.
19  */

20 public class L1JmxReady extends DSOMessageBase {
21
22     public L1JmxReady(MessageMonitor monitor, TCByteBufferOutput out,
23             MessageChannel channel, TCMessageType type) {
24         super(monitor, out, channel, type);
25     }
26
27     public L1JmxReady(SessionID sessionID, MessageMonitor monitor,
28             MessageChannel channel, TCMessageHeader header, TCByteBuffer[] data) {
29         super(sessionID, monitor, channel, header, data);
30     }
31
32 }
33
Popular Tags