304305306307308309310311312313314
* @param state the new state of this channel. */ synchronized void stateChanged(Date date, ChannelState state) { final ChannelStateHistoryEntry historyEntry; final ChannelState oldState = this.state; if (oldState == state) { return; }
289290291292293294295296297298299