Skip to content

Commit

Permalink
Making messages serialisable
Browse files Browse the repository at this point in the history
  • Loading branch information
maandree committed Apr 20, 2012
1 parent be3a5cf commit 3659d73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cnt/Blackboard.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@


import java.util.*; import java.util.*;
import java.awt.Color; import java.awt.Color;
import java.io.Serializable;




/** /**
Expand Down Expand Up @@ -136,7 +137,7 @@ public Thread createThread(final Runnable runnable)
/** /**
* This interface is used for all event handled by the enclosing class * This interface is used for all event handled by the enclosing class
*/ */
public static interface BlackboardMessage public static interface BlackboardMessage extends Serializable
{ {
//Marker interface //Marker interface
} }
Expand Down

0 comments on commit 3659d73

Please sign in to comment.