![JAR search and dependency download from the Maven repository](/logo.png)
com.droidkit.actors.ActorSelection Maven / Gradle / Ivy
package com.droidkit.actors;
/**
* Actor selection: group and path of actor
*
* @author Stepan Ex3NDR Korshakov ([email protected])
*/
public class ActorSelection {
private final Props props;
private final String path;
public ActorSelection(Props props, String path) {
this.props = props;
this.path = path;
}
public Props getProps() {
return props;
}
public String getPath() {
return path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy