Package net.bytebuddy.build
Class Plugin.Engine.Dispatcher.ForSerialTransformation
- java.lang.Object
-
- net.bytebuddy.build.Plugin.Engine.Dispatcher.ForSerialTransformation
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,Plugin.Engine.Dispatcher
- Enclosing interface:
- Plugin.Engine.Dispatcher
public static class Plugin.Engine.Dispatcher.ForSerialTransformation extends java.lang.Object implements Plugin.Engine.Dispatcher
A dispatcher that applies transformation upon discovery.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Plugin.Engine.Dispatcher.ForSerialTransformation.Factory
A factory for creating a serial dispatcher.-
Nested classes/interfaces inherited from interface net.bytebuddy.build.Plugin.Engine.Dispatcher
Plugin.Engine.Dispatcher.ForParallelTransformation, Plugin.Engine.Dispatcher.ForSerialTransformation, Plugin.Engine.Dispatcher.Materializable
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>>
failed
A mapping of all types that failed during transformation to the exceptions that explain the failure.private java.util.List<java.util.concurrent.Callable<? extends Plugin.Engine.Dispatcher.Materializable>>
preprocessings
A list of deferred processings.private Plugin.Engine.Target.Sink
sink
The sink to write any work to.private java.util.List<TypeDescription>
transformed
A list of all types that are transformed.private java.util.List<java.lang.String>
unresolved
A list of type names that could not be resolved.
-
Constructor Summary
Constructors Modifier Constructor Description protected
ForSerialTransformation(Plugin.Engine.Target.Sink sink, java.util.List<TypeDescription> transformed, java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>> failed, java.util.List<java.lang.String> unresolved)
Creates a dispatcher for a serial transformation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(java.util.concurrent.Callable<? extends java.util.concurrent.Callable<? extends Plugin.Engine.Dispatcher.Materializable>> work, boolean eager)
Accepts a new work assignment.void
close()
void
complete()
Completes the work being handled.
-
-
-
Field Detail
-
sink
private final Plugin.Engine.Target.Sink sink
The sink to write any work to.
-
transformed
private final java.util.List<TypeDescription> transformed
A list of all types that are transformed.
-
failed
private final java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>> failed
A mapping of all types that failed during transformation to the exceptions that explain the failure.
-
unresolved
private final java.util.List<java.lang.String> unresolved
A list of type names that could not be resolved.
-
preprocessings
private final java.util.List<java.util.concurrent.Callable<? extends Plugin.Engine.Dispatcher.Materializable>> preprocessings
A list of deferred processings.
-
-
Constructor Detail
-
ForSerialTransformation
protected ForSerialTransformation(Plugin.Engine.Target.Sink sink, java.util.List<TypeDescription> transformed, java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>> failed, java.util.List<java.lang.String> unresolved)
Creates a dispatcher for a serial transformation.- Parameters:
sink
- The sink to write any work to.transformed
- A list of all types that are transformed.failed
- A mapping of all types that failed during transformation to the exceptions that explain the failure.unresolved
- A list of type names that could not be resolved.
-
-
Method Detail
-
accept
public void accept(java.util.concurrent.Callable<? extends java.util.concurrent.Callable<? extends Plugin.Engine.Dispatcher.Materializable>> work, boolean eager) throws java.io.IOException
Accepts a new work assignment.- Specified by:
accept
in interfacePlugin.Engine.Dispatcher
- Parameters:
work
- The work to handle prefixed by a preprocessing step.eager
-true
if the processing does not need to be deferred until all preprocessing is complete.- Throws:
java.io.IOException
- If an I/O exception occurs.
-
complete
public void complete() throws java.io.IOException
Completes the work being handled.- Specified by:
complete
in interfacePlugin.Engine.Dispatcher
- Throws:
java.io.IOException
- If an I/O exception occurs.
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
-