}
synchronized void channelDialed(Date date, AsteriskChannel dialedChannel)
{
final AsteriskChannel oldDialedChannel = this.dialedChannel;
final DialedChannelHistoryEntry historyEntry;
historyEntry = new DialedChannelHistoryEntry(date, dialedChannel);
synchronized (dialedChannelHistory)
{
dialedChannelHistory.add(historyEntry);
}
this.dialedChannel = dialedChannel;