()
| 146 | } |
| 147 | |
| 148 | func ExampleConn_PublishMsg() { |
| 149 | nc, _ := nats.Connect(nats.DefaultURL) |
| 150 | defer nc.Close() |
| 151 | |
| 152 | msg := &nats.Msg{Subject: "foo", Reply: "bar", Data: []byte("Hello World!")} |
| 153 | nc.PublishMsg(msg) |
| 154 | } |
| 155 | |
| 156 | func ExampleConn_Flush() { |
| 157 | nc, _ := nats.Connect(nats.DefaultURL) |
nothing calls this directly
no test coverage detected