Renamed ActiveObject factory object to TypedActor. Improved network protocol for TypedActor. Remote TypedActors now identified by UUID.
13 lines
248 B
Java
13 lines
248 B
Java
package sample.camel;
|
|
|
|
import se.scalablesolutions.akka.actor.TypedActor;
|
|
/**
|
|
* @author Martin Krasser
|
|
*/
|
|
public class BeanImpl extends TypedActor implements BeanIntf {
|
|
|
|
public String foo(String s) {
|
|
return "hello " + s;
|
|
}
|
|
|
|
}
|