This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
tacitus/gdax/listener_client.go

10 lines
143 B
Go
Raw Normal View History

2017-09-24 16:21:16 -07:00
package gdax
2017-09-27 20:36:37 -07:00
type ListenerClient interface {
2017-09-24 16:21:16 -07:00
Open() error
2017-09-27 20:36:37 -07:00
Close() error
2017-09-24 16:21:16 -07:00
Send(msg Request)
Stream() <-chan Message
Error() <-chan error
}