Package graphql.schema.diff.reporting
Interface DifferenceReporter
-
- All Known Implementing Classes:
CapturingReporter
,ChainedReporter
,PrintStreamReporter
@PublicSpi public interface DifferenceReporter
This is called with each different encountered (including info ones) by aSchemaDiff
operation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onEnd()
Called when the difference operation if finishedvoid
report(DiffEvent differenceEvent)
Called to report a difference
-
-
-
Method Detail
-
report
void report(DiffEvent differenceEvent)
Called to report a difference- Parameters:
differenceEvent
- the event describing the difference
-
onEnd
void onEnd()
Called when the difference operation if finished
-
-