encode connection to pubsub

This commit is contained in:
Sinh 2022-08-10 17:52:00 +07:00
parent e72bc82991
commit 5999fb7f59
1 changed files with 5 additions and 0 deletions

View File

@ -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)
}