Interface NotifiableTestStream
-
- All Known Implementing Classes:
AbstractCommandStream,AbstractForkInputStream,TestLessInputStream,TestLessInputStream.TestLessInputStreamBuilder.CachableCommands,TestLessInputStream.TestLessInputStreamBuilder.ImmediateCommands,TestProvidingInputStream
public interface NotifiableTestStreamForked jvm notifies master process to provide a new test.- Since:
- 2.19
- See Also:
TestProvidingInputStream
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidacknowledgeByeEventReceived()voidnoop()voidprovideNewTest()NotifiesTestProvidingInputStreamin order to dispatch a new test back to the forked jvm (particular fork which hits this call); or do nothing inTestLessInputStream.voidshutdown(Shutdown shutdownType)voidskipSinceNextTest()Sends an event to a fork jvm in order to skip tests.
-
-
-
Method Detail
-
provideNewTest
void provideNewTest()
NotifiesTestProvidingInputStreamin order to dispatch a new test back to the forked jvm (particular fork which hits this call); or do nothing inTestLessInputStream.
-
skipSinceNextTest
void skipSinceNextTest()
Sends an event to a fork jvm in order to skip tests. Returns immediately without blocking.
-
shutdown
void shutdown(Shutdown shutdownType)
-
noop
void noop()
-
acknowledgeByeEventReceived
void acknowledgeByeEventReceived()
-
-