lib.sedna.datasources.kafka.kafka_manager

Module Contents

Classes

KafkaProducer

KafkaConsumerThread

A class that represents a thread of control.

class lib.sedna.datasources.kafka.kafka_manager.KafkaProducer(address, port, topic=[], asynchronous=False)[source]
write_result(data)[source]
class lib.sedna.datasources.kafka.kafka_manager.KafkaConsumerThread(address, port, topic=[], callback=None)[source]

Bases: threading.Thread

A class that represents a thread of control.

This class can be safely subclassed in a limited fashion. There are two ways to specify the activity: by passing a callable object to the constructor, or by overriding the run() method in a subclass.

run()[source]

Method representing the thread’s activity.

You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.