|
34 | 34 | import me.devnatan.inventoryframework.pipeline.PlatformOpenInterceptor; |
35 | 35 | import me.devnatan.inventoryframework.pipeline.PlatformRenderInterceptor; |
36 | 36 | import me.devnatan.inventoryframework.pipeline.PlatformUpdateHandlerInterceptor; |
37 | | -import me.devnatan.inventoryframework.pipeline.ScheduledUpdateAfterCloseInterceptor; |
38 | | -import me.devnatan.inventoryframework.pipeline.ScheduledUpdateAfterRenderInterceptor; |
| 37 | +import me.devnatan.inventoryframework.pipeline.ScheduledUpdateStartInterceptor; |
| 38 | +import me.devnatan.inventoryframework.pipeline.ScheduledUpdateStopInterceptor; |
39 | 39 | import me.devnatan.inventoryframework.pipeline.StandardPipelinePhases; |
40 | 40 | import me.devnatan.inventoryframework.pipeline.UpdateInterceptor; |
41 | 41 | import me.devnatan.inventoryframework.pipeline.ViewerLastInteractionTrackerInterceptor; |
@@ -601,11 +601,11 @@ final void internalInitialization(IFViewFrame<?, ?> framework) { |
601 | 601 | pipeline.intercept(StandardPipelinePhases.FIRST_RENDER, new LayoutRenderInterceptor()); |
602 | 602 | pipeline.intercept(StandardPipelinePhases.FIRST_RENDER, new AvailableSlotInterceptor()); |
603 | 603 | pipeline.intercept(StandardPipelinePhases.FIRST_RENDER, new FirstRenderInterceptor()); |
604 | | - pipeline.intercept(StandardPipelinePhases.FIRST_RENDER, new ScheduledUpdateAfterRenderInterceptor()); |
| 604 | + pipeline.intercept(StandardPipelinePhases.VIEWER_ADDED, new ScheduledUpdateStartInterceptor()); |
| 605 | + pipeline.intercept(StandardPipelinePhases.VIEWER_REMOVED, new ScheduledUpdateStopInterceptor()); |
605 | 606 | pipeline.intercept(StandardPipelinePhases.UPDATE, new PlatformUpdateHandlerInterceptor()); |
606 | 607 | pipeline.intercept(StandardPipelinePhases.UPDATE, new UpdateInterceptor()); |
607 | 608 | pipeline.intercept(StandardPipelinePhases.CLOSE, new PlatformCloseInterceptor()); |
608 | | - pipeline.intercept(StandardPipelinePhases.CLOSE, new ScheduledUpdateAfterCloseInterceptor()); |
609 | 609 | pipeline.intercept(StandardPipelinePhases.CLOSE, new ContextInvalidationOnCloseInterceptor()); |
610 | 610 | pipeline.intercept(StandardPipelinePhases.CLICK, new ViewerLastInteractionTrackerInterceptor()); |
611 | 611 | pipeline.intercept(StandardPipelinePhases.CLICK, new ComponentClickHandlerCallInterceptor()); |
|
0 commit comments