Package org.agrona.generation
Interface DynamicPackageOutputManager
-
- All Superinterfaces:
OutputManager
- All Known Implementing Classes:
StringWriterOutputManager
public interface DynamicPackageOutputManager extends OutputManager
Extended version of theOutputManager
allowing the specification of packages for selected outputs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setPackageName(java.lang.String packageName)
Sets the package name to be used by the Writer obtained through the very next call toOutputManager.createOutput(java.lang.String)
.-
Methods inherited from interface org.agrona.generation.OutputManager
createOutput, withOutput
-
-
-
-
Method Detail
-
setPackageName
void setPackageName(java.lang.String packageName)
Sets the package name to be used by the Writer obtained through the very next call toOutputManager.createOutput(java.lang.String)
. A subsequent call toOutputManager.createOutput(java.lang.String)
should use the initial package name, whatever that was.- Parameters:
packageName
- the packageName to be applied to output. The first invocation will be captured as the initial package name.
-
-