Package 

Class SignalFromDiskExporter

    • Method Summary

      Modifier and Type Method Description
      final Boolean exportBatchOfSpans() A batch contains all the signals that arrived in one call to SpanDiskExporter.
      final Boolean exportBatchOfMetrics() A batch contains all the signals that arrived in one call to MetricDiskExporter.
      final Boolean exportBatchOfLogs() A batch contains all the signals that arrived in one call to LogRecordDiskExporter.
      final Boolean exportBatchOfEach() Convenience method that attempts to export all kinds of signals from disk.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • exportBatchOfSpans

        @WorkerThread() final Boolean exportBatchOfSpans()

        A batch contains all the signals that arrived in one call to SpanDiskExporter.export. So if that function is called 5 times, then there will be 5 batches in disk. This function reads and exports ONE batch every time is called.

      • exportBatchOfMetrics

        @WorkerThread() final Boolean exportBatchOfMetrics()

        A batch contains all the signals that arrived in one call to MetricDiskExporter.export. So if that function is called 5 times, then there will be 5 batches in disk. This function reads and exports ONE batch every time is called.

      • exportBatchOfLogs

        @WorkerThread() final Boolean exportBatchOfLogs()

        A batch contains all the signals that arrived in one call to LogRecordDiskExporter.export. So if that function is called 5 times, then there will be 5 batches in disk. This function reads and exports ONE batch every time is called.