All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dubboclub.akka.remoting.actor.BasicActor Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
package net.dubboclub.akka.remoting.actor;

import akka.actor.ActorRef;
import akka.routing.Router;
import com.alibaba.dubbo.remoting.exchange.ResponseFuture;

/**
 * Created by bieber on 2015/7/9.
 */
public interface BasicActor {
    
    public void destroy();
    
    public void restart();
    
    public Router getRouter();
    
    public ResponseFuture tell(Object message);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy