Package com.facebook.presto.kafka.decoder

Examples of com.facebook.presto.kafka.decoder.KafkaDecoderModule


        bindConfig(binder).to(KafkaConnectorConfig.class);

        jsonBinder(binder).addDeserializerBinding(Type.class).to(TypeDeserializer.class);
        jsonCodecBinder(binder).bindJsonCodec(KafkaTopicDescription.class);

        binder.install(new KafkaDecoderModule());

        for (KafkaInternalFieldDescription internalFieldDescription : KafkaInternalFieldDescription.getInternalFields()) {
            bindInternalColumn(binder, internalFieldDescription);
        }
    }
View Full Code Here

TOP

Related Classes of com.facebook.presto.kafka.decoder.KafkaDecoderModule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.