org.red5.server.net.ICommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ant-media-server-common Show documentation
Show all versions of ant-media-server-common Show documentation
Classes common for multiple Ant Media projects
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();
}