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
2017-09-24 16:21:16 -07:00

10 lines
147 B
Go

package tacitus
type ListenerService interface {
Open() error
Close()
Subscribe(product string)
Stream() <-chan Trade
Error() <-chan error
}