Sign in
fuchsia
/
third_party
/
github.com
/
smartystreets
/
go-disruptor
/
032ae8733f36318a7798938519ad74111a574d28
/
.
/
consumer.go
blob: 9d55e7c9826cb815e2881513578474fbc4aaa238 [
file
] [
log
] [
blame
]
package disruptor
// TODO: investigate performance impact of Consume(sequence, remaining int64) (consumed int64)
type Consumer interface {
Consume(lower, upper int64)
}