createTracerSink function

TracerSink createTracerSink(
  1. FileSystem fs,
  2. String path,
  3. int baseEpochUs
)

Creates the appropriate TracerSink depending on the environment and filesystem type.

Implementation

TracerSink createTracerSink(FileSystem fs, String path, int baseEpochUs) {
  return getTracerSink(fs, path, baseEpochUs);
}