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

org.red5.server.net.ICommand Maven / Gradle / Ivy

package org.red5.server.net;

import java.util.Map;

import org.apache.mina.core.buffer.IoBuffer;
import org.red5.server.api.service.IServiceCall;

/**
 * Represents a "command" sent to or received from an end-point.
 * 
 * @author Paul Gregoire ([email protected])
 */
public interface ICommand {

    int getTransactionId();

    IServiceCall getCall();

    Map getConnectionParams();

    IoBuffer getData();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy