completed remote active objects (1:st iteration) - left todo are: TX semantics, supervision and remote references + tests

This commit is contained in:
Jonas Boner 2009-06-24 15:12:47 +02:00
parent 8ff45daddc
commit 47abc143a4
22 changed files with 1228 additions and 314 deletions

View file

@ -0,0 +1,31 @@
/**
* Copyright (C) 2009 Scalable Solutions.
*/
package se.scalablesolutions.akka.api;
import org.junit.*;
import static org.junit.Assert.*;
import junit.framework.TestSuite;
import se.scalablesolutions.akka.kernel.nio.ProxyServer;
public class NioTest extends TestSuite {
@BeforeClass
public static void initialize() {
}
@AfterClass
public static void cleanup() {
}
@Test
public void simpleRequestReply() {
ProxyServer server = new ProxyServer();
server.start();
}
}