/**
  * Tell the program manager to change the playback speed of a particular program.
  *
  * @param message The message containing speed change information and identification
  */
 protected void handlePlaybackSpeedChange(ProgramPlaybackSpeedChangeMessage message) {
   programManager.setPlaybackSpeed(message.getCellID(), message.getPlaybackSpeed());
 }