encode connection to pubsub
This commit is contained in:
parent
e72bc82991
commit
5999fb7f59
|
@ -34,3 +34,8 @@ func (sv Server) Subscribe(subject string, cb nats.MsgHandler) (*nats.Subscripti
|
|||
}
|
||||
return sub, nil
|
||||
}
|
||||
|
||||
// NewJSONEncodedConn ...
|
||||
func (sv Server) NewJSONEncodedConn() (*nats.EncodedConn, error) {
|
||||
return nats.NewEncodedConn(sv.instance, nats.JSON_ENCODER)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue