Merge pull request #4 from Selly-Modules/pubsub-with-json-encode

encode connection to pubsub
This commit is contained in:
Sinh Luu 2022-08-10 17:52:20 +07:00 committed by GitHub
commit 4eb30ac5d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)
}