enqueue method
void
enqueue(
- LocationSample sample
Implementation
void enqueue(pb.LocationSample sample) {
_bufer.add(sample);
if (_bufer.length >= maxBatch) {
_flush();
}
}
void enqueue(pb.LocationSample sample) {
_bufer.add(sample);
if (_bufer.length >= maxBatch) {
_flush();
}
}