public void startMonitoring(String filename, String format, boolean mix) throws ManagerCommunicationException,
NoSuchChannelException
{
ManagerResponse response;
response = server.sendAction(new MonitorAction(name, filename, format, mix));
if (response instanceof ManagerError)
{
throw new NoSuchChannelException("Channel '" + name + "' is not available: " + response.getMessage());
}
}