sarama.go 476 B

12345678910
  1. /*
  2. Package kafka (AKA sarama.go) provides client libraries for the Kafka 0.8 protocol.
  3. It provides a high-level API to make common tasks easy, as well as a low-level API for precise control
  4. over message batching etc. The high-level API consists of Client, Producer, Consumer, Encoder.
  5. If you need more control, you can connect to Kafka brokers directly using the Broker object,
  6. then send requests and receive responses using functions on the broker itself.
  7. */
  8. package kafka