io.vlingo.actors.ActorProxyStub Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vlingo-actors Show documentation
Show all versions of vlingo-actors Show documentation
Type safe Actor Model toolkit for reactive concurrency and resiliency using Java and other JVM languages.
package io.vlingo.actors;
class ActorProxyStub extends ActorProxyBase {
private static final long serialVersionUID = -7711746801630270471L;
public ActorProxyStub(Actor actor) {
super(null,
Definition.SerializationProxy.from(actor.definition()),
actor.address());
}
public ActorProxyStub() { }
}