Merge pull request #38 from wolfstudy/xiaolong/fix-ci

Fix CI the openjdk-8-jre-headless can't download
tree: def76d8f85436e6e6937c2b6e37ad7fceeca0764
  1. .github/
  2. integration-tests/
  3. perf/
  4. pkg/
  5. pulsar/
  6. util/
  7. .gitignore
  8. .golangci.yml
  9. docker-ci.sh
  10. Dockerfile
  11. go.mod
  12. go.sum
  13. LICENSE
  14. NOTICE
  15. pulsar-test-service-start.sh
  16. pulsar-test-service-stop.sh
  17. README.md
  18. run-ci.sh
README.md

GoDoc Go Report Card Language LICENSE

Apache Pulsar Go Client Library

Note: this library is still a work in progress. For production usage, please refer to the CGo based client library, documented at http://pulsar.apache.org/docs/en/client-libraries-go/

Goal

This projects is developing a pure-Go client library for Pulsar that does not depend on the C++ Pulsar library.

Once feature parity and stability are reached, this will supersede the current CGo based library.

Status

Check the Projects page at https://github.com/apache/pulsar-client-go/projects for tracking the status and the progress.

Usage

Import the client library:

import "github.com/apache/pulsar-client-go/pulsar"
client, err := pulsar.NewClient(pulsar.ClientOptions{
    URL: "pulsar://localhost:6650",
})

producer, err := client.CreateProducer(pulsar.ProducerOptions{
	Topic: "my-topic",
})

err = producer.Send(context.Background(), &pulsar.ProducerMessage{
	Payload: []byte("hello"),
})

if err == nil {
	fmt.Println("Published message")
} else {
	fmt.Println("Failed to publish message", err)
}

Contact

Mailing lists
NameScope
users@pulsar.apache.orgUser-related discussionsSubscribeUnsubscribeArchives
dev@pulsar.apache.orgDevelopment-related discussionsSubscribeUnsubscribeArchives
Slack

Pulsar slack channel #dev-go at https://apache-pulsar.slack.com/

You can self-register at https://apache-pulsar.herokuapp.com/

License

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0