}
private AvroSourceProtocol connect(final String hostname, final int port) {
try {
if (transceiver == null) {
transceiver = new NettyTransceiver(new InetSocketAddress(hostname, port));
}
} catch (final IOException ioe) {
LOGGER.error("Unable to create transceiver", ioe);
return null;
}