Package net.minecraft.resource
Interface ResourceReloader
- All Known Subinterfaces:
SynchronousResourceReloader
- All Known Implementing Classes:
BakedModelManager
,BlockEntityRenderDispatcher
,BlockRenderManager
,BuiltinModelItemRenderer
,EntityModelLoader
,EntityRenderDispatcher
,FoliageColormapResourceSupplier
,FunctionLoader
,GrassColormapResourceSupplier
,ItemRenderer
,JsonDataLoader
,LanguageManager
,LootConditionManager
,LootFunctionManager
,LootManager
,PaintingManager
,ParticleManager
,PeriodicNotificationManager
,RecipeManager
,SearchManager
,ServerAdvancementLoader
,SinglePreparationResourceReloader
,SoundManager
,SplashTextResourceSupplier
,SpriteAtlasHolder
,StatusEffectSpriteManager
,TagManagerLoader
,TextureManager
,VideoWarningManager
,WorldRenderer
public interface ResourceReloader
A resource reloader performs actual reloading in its reload when called by
SimpleResourceReload.start(net.minecraft.resource.ResourceManager, java.util.List<net.minecraft.resource.ResourceReloader>, java.util.concurrent.Executor, java.util.concurrent.Executor, java.util.concurrent.CompletableFuture<net.minecraft.util.Unit>, boolean)
.- See Also:
-
SimpleResourceReload.start(net.minecraft.resource.ResourceManager, java.util.List<net.minecraft.resource.ResourceReloader>, java.util.concurrent.Executor, java.util.concurrent.Executor, java.util.concurrent.CompletableFuture<net.minecraft.util.Unit>, boolean)
SinglePreparationResourceReloader (completes preparation in one method)
SynchronousResourceReloader (performs all reloading in the apply executor)
- Mappings:
Namespace Name official ajy
intermediary net/minecraft/class_3302
named net/minecraft/resource/ResourceReloader
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
A synchronizer to indicate completion of a reloader's prepare stage and to allow start of the apply stage only if all reloaders have finished the prepare stage. -
Method Summary
Modifier and TypeMethodDescriptiondefault String
getName()
Returns a user-friendly name for logging.reload
(ResourceReloader.Synchronizer synchronizer, ResourceManager manager, Profiler prepareProfiler, Profiler applyProfiler, Executor prepareExecutor, Executor applyExecutor) Performs a reload.
-
Method Details
-
reload
CompletableFuture<Void> reload(ResourceReloader.Synchronizer synchronizer, ResourceManager manager, Profiler prepareProfiler, Profiler applyProfiler, Executor prepareExecutor, Executor applyExecutor) Performs a reload. Returns a future that is completed when the reload is completed.In a reload, there is a prepare stage and an apply stage. For the prepare stage, you should create completable futures with CompletableFuture.supplyAsync(..., prepareExecutor) to ensure the prepare actions are done with the prepare executor. Then, you should have a completable future for all the prepared actions, and call combinedPrepare.thenCompose(synchronizer::waitFor) to notify the
synchronizer
. Finally, you should run CompletableFuture.thenAcceptAsync(..., applyExecutor) for apply actions. In the end, returns the result ofthenAcceptAsync
.- Parameters:
synchronizer
- the synchronizermanager
- the resource managerprepareProfiler
- the profiler for prepare stageapplyProfiler
- the profiler for apply stageprepareExecutor
- the executor for prepare stageapplyExecutor
- the executor for apply stage- Returns:
- a future for the reload
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lajy;a(Lajy$a;Lake;Lazc;Lazc;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
intermediary method_25931
Lnet/minecraft/class_3302;method_25931(Lnet/minecraft/class_3302$class_4045;Lnet/minecraft/class_3300;Lnet/minecraft/class_3695;Lnet/minecraft/class_3695;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
named reload
Lnet/minecraft/resource/ResourceReloader;reload(Lnet/minecraft/resource/ResourceReloader$Synchronizer;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lnet/minecraft/util/profiler/Profiler;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
-
getName
Returns a user-friendly name for logging.- Mappings:
Namespace Name Mixin selector official c
Lajy;c()Ljava/lang/String;
intermediary method_22322
Lnet/minecraft/class_3302;method_22322()Ljava/lang/String;
named getName
Lnet/minecraft/resource/ResourceReloader;getName()Ljava/lang/String;
-