Interface DataSegmentAnnouncer
-
- All Known Implementing Classes:
BatchDataSegmentAnnouncer,NoopDataSegmentAnnouncer
public interface DataSegmentAnnouncer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidannounceSegment(org.apache.druid.timeline.DataSegment segment)voidannounceSegments(Iterable<org.apache.druid.timeline.DataSegment> segments)voidunannounceSegment(org.apache.druid.timeline.DataSegment segment)voidunannounceSegments(Iterable<org.apache.druid.timeline.DataSegment> segments)
-
-
-
Method Detail
-
announceSegment
void announceSegment(org.apache.druid.timeline.DataSegment segment) throws IOException- Throws:
IOException
-
unannounceSegment
void unannounceSegment(org.apache.druid.timeline.DataSegment segment) throws IOException- Throws:
IOException
-
announceSegments
void announceSegments(Iterable<org.apache.druid.timeline.DataSegment> segments) throws IOException
- Throws:
IOException
-
unannounceSegments
void unannounceSegments(Iterable<org.apache.druid.timeline.DataSegment> segments) throws IOException
- Throws:
IOException
-
-