package com.ubermq.jms.common.datagram.control;
import com.ubermq.jms.common.datagram.IControlDatagram;
/**
* The datagram interface representing a cluster registration command.
* This command has no parameters - it is simply informational to the
* peer that the connection is intended as a clustering connection.
*/
public interface IClusterDatagram
extends ICommandSubGram
{
}
|