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

com.github.euler.core.JobToScan Maven / Gradle / Ivy

package com.github.euler.core;

import java.net.URI;

import akka.actor.typed.ActorRef;

public class JobToScan implements SourceCommand {

    public final URI uri;
    public final ActorRef replyTo;

    public JobToScan(URI uri, ActorRef replyTo) {
        super();
        this.uri = uri;
        this.replyTo = replyTo;
    }

    public JobToScan(JobToProcess msg, ActorRef replyTo) {
        this.uri = msg.uri;
        this.replyTo = replyTo;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy