Uses of Interface
net.bytebuddy.build.Plugin.Engine.Target.Sink
-
Packages that use Plugin.Engine.Target.Sink Package Description net.bytebuddy.build A package for types that allow for applying Byte Buddy transformation during a build process. -
-
Uses of Plugin.Engine.Target.Sink in net.bytebuddy.build
Classes in net.bytebuddy.build that implement Plugin.Engine.Target.Sink Modifier and Type Class Description static classPlugin.Engine.Target.DiscardingA sink that discards any entry.static classPlugin.Engine.Target.ForFolderRepresents a folder as the target for a plugin engine's application.static classPlugin.Engine.Target.InMemoryA sink that stores all elements in a memory map.static classPlugin.Engine.Target.Sink.ForJarOutputStreamImplements a sink for a jar file.Methods in net.bytebuddy.build that return Plugin.Engine.Target.Sink Modifier and Type Method Description Plugin.Engine.Target.SinkPlugin.Engine.Target.Discarding. write(Manifest manifest)Initializes this target prior to writing.Plugin.Engine.Target.SinkPlugin.Engine.Target.ForFolder. write(Manifest manifest)Initializes this target prior to writing.Plugin.Engine.Target.SinkPlugin.Engine.Target.ForJarFile. write(Manifest manifest)Initializes this target prior to writing.Plugin.Engine.Target.SinkPlugin.Engine.Target.InMemory. write(Manifest manifest)Initializes this target prior to writing.Plugin.Engine.Target.SinkPlugin.Engine.Target. write(Manifest manifest)Initializes this target prior to writing.Methods in net.bytebuddy.build with parameters of type Plugin.Engine.Target.Sink Modifier and Type Method Description Plugin.Engine.DispatcherPlugin.Engine.Dispatcher.Factory. make(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Creates a new dispatcher.Plugin.Engine.DispatcherPlugin.Engine.Dispatcher.ForParallelTransformation.Factory. make(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Creates a new dispatcher.Plugin.Engine.DispatcherPlugin.Engine.Dispatcher.ForParallelTransformation.WithThrowawayExecutorService.Factory. make(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Creates a new dispatcher.Plugin.Engine.DispatcherPlugin.Engine.Dispatcher.ForSerialTransformation.Factory. make(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Creates a new dispatcher.voidPlugin.Engine.Dispatcher.Materializable.ForFailedElement. materialize(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Materializes this work result and adds any results to the corresponding collection.voidPlugin.Engine.Dispatcher.Materializable.ForRetainedElement. materialize(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Materializes this work result and adds any results to the corresponding collection.voidPlugin.Engine.Dispatcher.Materializable.ForTransformedElement. materialize(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Materializes this work result and adds any results to the corresponding collection.voidPlugin.Engine.Dispatcher.Materializable.ForUnresolvedElement. materialize(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Materializes this work result and adds any results to the corresponding collection.voidPlugin.Engine.Dispatcher.Materializable. materialize(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Materializes this work result and adds any results to the corresponding collection.Constructors in net.bytebuddy.build with parameters of type Plugin.Engine.Target.Sink Constructor Description ForParallelTransformation(Executor executor, Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Creates a new dispatcher that applies transformations in parallel.ForSerialTransformation(Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Creates a dispatcher for a serial transformation.WithThrowawayExecutorService(ExecutorService executorService, Plugin.Engine.Target.Sink sink, List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)Creates a new dispatcher that applies transformations in parallel and that closes the supplies executor service.
-