Interface ForkNodeArguments
-
- All Known Implementing Classes:
ForkedNodeArg,ForkStarter.ForkedNodeArg
public interface ForkNodeArgumentsThe properties related to the current JVM.- Since:
- 3.0.0-M5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.FiledumpStreamException(java.lang.Throwable t)java.io.FiledumpStreamText(java.lang.String text)java.io.FilegetCommandStreamBinaryFile()java.lang.ObjectgetConsoleLock()ConsoleLoggergetConsoleLogger()java.io.FilegetEventStreamBinaryFile()intgetForkChannelId()The index of the forked JVM, from 1 to N.java.lang.StringgetSessionId()voidlogWarningAtEnd(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 ConsoleLogger getConsoleLogger()
-
getConsoleLock
@Nonnull java.lang.Object getConsoleLock()
-
getEventStreamBinaryFile
java.io.File getEventStreamBinaryFile()
-
getCommandStreamBinaryFile
java.io.File getCommandStreamBinaryFile()
-
-