Package org.agrona.generation
Interface DynamicPackageOutputManager
- All Superinterfaces:
OutputManager
- All Known Implementing Classes:
StringWriterOutputManager
Extended version of the
OutputManager
allowing the specification of packages for selected outputs.-
Method Summary
Modifier and TypeMethodDescriptionvoid
setPackageName
(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 Details
-
setPackageName
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.
-