* Connects the channel at the provided version.
*/
private void connectChannel(long version, byte[] signature) throws ChannelException {
final HashedVersion signatureInfo = HashedVersion.of(version, signature);
deltaChannel = new MockWaveletDeltaChannel();
cc = new ConcurrencyControl(ccLogger, signatureInfo);
operationChannel = new OperationChannelImpl(opLogger, deltaChannel, cc,
Accessibility.READ_WRITE);
operationChannel.setListener(listener);
operationChannel.onConnection(signatureInfo, signatureInfo);
}