use of com.wavefront.dto.SourceTag in project java by wavefrontHQ.
the class SourceTagSenderTask method flushSingleBatch.
@Override
void flushSingleBatch(List<SourceTag> batch, @Nullable QueueingReason reason) {
for (SourceTag tag : batch) {
SourceTagSubmissionTask task = new SourceTagSubmissionTask(proxyAPI, properties, backlog, handlerKey.getHandle(), tag, null);
task.enqueue(reason);
}
}
Aggregations