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

10 lines
147 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
}