fixed outstanding remoting bugs and issues

This commit is contained in:
jboner 2009-07-24 00:41:42 +02:00
parent 1570fc6732
commit f016ed4216
12 changed files with 601 additions and 168 deletions

View file

@ -1,6 +1,6 @@
package se.scalablesolutions.akka.api;
public class InMemFailer implements Serializable {
public class InMemFailer implements java.io.Serializable {
public int fail() {
throw new RuntimeException("expected");
}

View file

@ -1,6 +1,6 @@
package se.scalablesolutions.akka.api;
public class PersistentFailer implements Serializable {
public class PersistentFailer implements java.io.Serializable {
public int fail() {
throw new RuntimeException("expected");
}