Interface ForkNodeArguments
-
public interface ForkNodeArguments
The properties related to the current JVM.- Since:
- 3.0.0-M5
- Author:
- Tibor Digana (tibor17)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.File
dumpStreamException(java.lang.Throwable t)
java.io.File
dumpStreamText(java.lang.String text)
java.io.File
getCommandStreamBinaryFile()
java.lang.Object
getConsoleLock()
org.apache.maven.plugin.surefire.log.api.ConsoleLogger
getConsoleLogger()
java.io.File
getEventStreamBinaryFile()
int
getForkChannelId()
The index of the forked JVM, from 1 to N.java.lang.String
getSessionId()
void
logWarningAtEnd(java.lang.String text)
-
-
-
Method Detail
-
getSessionId
@Nonnull java.lang.String getSessionId()
-
getForkChannelId
@Nonnegative int getForkChannelId()
The index of the forked JVM, from 1 to N.- Returns:
- index of the forked JVM
-
dumpStreamText
@Nonnull java.io.File dumpStreamText(@Nonnull java.lang.String text)
-
dumpStreamException
@Nonnull java.io.File dumpStreamException(@Nonnull java.lang.Throwable t)
-
logWarningAtEnd
void logWarningAtEnd(@Nonnull java.lang.String text)
-
getConsoleLogger
@Nonnull org.apache.maven.plugin.surefire.log.api.ConsoleLogger getConsoleLogger()
-
getConsoleLock
@Nonnull java.lang.Object getConsoleLock()
-
getEventStreamBinaryFile
java.io.File getEventStreamBinaryFile()
-
getCommandStreamBinaryFile
java.io.File getCommandStreamBinaryFile()
-
-