public void unPauseMixMonitor(MixMonitorDirection direction) throws ManagerCommunicationException, NoSuchChannelException
{
ManagerResponse response;
response = server.sendAction(new PauseMixMonitorAction(this.name,0,direction.getStateName()));
if (response instanceof ManagerError) {
throw new NoSuchChannelException("Channel '" + name + "' is not available: " + response.getMessage());
}
}