* Tells the broker to terminate its VM. This can be used to cleanly terminate a broker running in
* a standalone java process. Server must have property enable.vm.shutdown=true defined
* to allow this to work.
*/
public void terminateBrokerVM() throws JMSException {
BrokerAdminCommand command = new BrokerAdminCommand();
command.setCommand(BrokerAdminCommand.SHUTDOWN_SERVER_VM);
asyncSendPacket(command);
}