Interface ForkNodeArguments
-
- All Known Implementing Classes:
ForkedNodeArg
,ForkStarter.ForkedNodeArg
public interface ForkNodeArguments
The 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.File
dumpStreamException(java.lang.Throwable t)
java.io.File
dumpStreamText(java.lang.String text)
java.io.File
getCommandStreamBinaryFile()
java.lang.Object
getConsoleLock()
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 ConsoleLogger getConsoleLogger()
-
getConsoleLock
@Nonnull java.lang.Object getConsoleLock()
-
getEventStreamBinaryFile
java.io.File getEventStreamBinaryFile()
-
getCommandStreamBinaryFile
java.io.File getCommandStreamBinaryFile()
-
-