public void mirrorChannel(int sourceChannel, int mirrorChannel, int duration) {
logger.trace("Mirroring channel {} onto {}", sourceChannel,
mirrorChannel);
transmitter.getChannel(mirrorChannel).setChannelAction(
new MirrorAction(transmitter.getChannel(sourceChannel),
duration));
}