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/listener.go

11 lines
173 B
Go
Raw Normal View History

2017-09-24 16:21:16 -07:00
package tacitus
type ListenerService interface {
Open() error
Close()
Subscribe(product string)
Stream() <-chan Trade
Error() <-chan error
2017-09-24 22:16:16 -07:00
SetLogger(logger Logger)
2017-09-24 16:21:16 -07:00
}