-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
40 lines (34 loc) · 773 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package example
import (
"github.com/gmarcial/amqppool"
"github.com/streadway/amqp"
"log"
"os"
"time"
)
func main() {
connectionString := os.Getenv("AMQP_CONNECTION")
maxChannels := 10
logger := log.New(os.Stdout, "", log.LstdFlags)
//Action
pool, err := amqppool.NewPool(connectionString, maxChannels, logger)
if err != nil {
panic(err)
}
defer pool.Close()
reusableChannel, err := pool.GetReusableChannel()
if err != nil {
panic(err)
}
defer reusableChannel.Release()
publishing := amqp.Publishing{
ContentType: "application/json",
Body: []byte("Sample"),
DeliveryMode: amqp.Persistent,
Timestamp: time.Now(),
}
err = reusableChannel.Publish("exchange", "key", false, true, publishing)
if err != nil {
panic(err)
}
}