Source code: alice/tuplemedium/runtime/NewInspectorMsg.java
1 /*
2 * NewInspectorMsg.java
3 *
4 * Copyright 2000-2001 deis.unibo.it
5 *
6 * This software is the proprietary information of deis.unibo.it
7 * Use is subject to license terms.
8 *
9 */
10 package alice.tuplemedium.runtime;
11 import java.io.*;
12 import alice.tuplemedium.AgentId;
13
14 /**
15 * message sent by an inspector to a daemon
16 * in order to become an (inspector) user of a tuple centre
17 */
18 public class NewInspectorMsg extends NodeMsg{
19
20 public String tcName;
21 public InspectorProtocol info;
22
23 public NewInspectorMsg(AgentId aid,String tcName_,InspectorProtocol info_) {
24 super(aid,"msgNewInspector");
25 tcName=tcName_;
26 info=info_;
27 }
28 }
29