Source code: alice/tuplemedium/runtime/InspectorMsg.java
1 /*
2 * InspectorMsg.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.*;
13
14 /**
15 * message from inspector connector (proxy) to inspector acceptor
16 */
17 public class InspectorMsg implements Serializable {
18
19 /** virtual machine time */
20 public long vmTime;
21
22 /** observer time */
23 public long localTime;
24 public int nTuplesMatchingFilter = 0;
25
26 /** tuple observed or to set */
27 public Tuple[] tuples = null;
28
29 /** events observed */
30 public Event[] wnEvents = null;
31
32 /** observed a reaction ok*/
33 public TriggeredReaction reactionOk = null;
34
35 /** observed a reaction failure */
36 public TriggeredReaction reactionFailed = null;
37
38 public InspectorMsg(){
39 }
40 }
41