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 aSchemaDiffoperation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEnd()Called when the difference operation if finishedvoidreport(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
-
-