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

io.remotecontrol.client.Transport Maven / Gradle / Ivy

package io.remotecontrol.client;

import io.remotecontrol.CommandChain;
import io.remotecontrol.result.Result;

import java.io.IOException;

/**
 * A transport is used by a remotecontrol control for sending a command and receiving the result.
 */
public interface Transport {

    public abstract Result send(CommandChain commandChain) throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy