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

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