Package org.geotools.swing
Interface RenderingExecutorListener
-
- All Known Implementing Classes:
AbstractMapPane,JLayeredMapPane,JMapPane
public interface RenderingExecutorListenerListens for events published by a RenderingExecutor- Since:
- 2.7
- Author:
- Michael Bedward
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonRenderingCompleted(RenderingExecutorEvent ev)Called by the executor when rendering has been completed.voidonRenderingFailed(RenderingExecutorEvent ev)Called by the executor when rendering failed for some reason.voidonRenderingStarted(RenderingExecutorEvent ev)Called by the executor when rendering has started.
-
-
-
Method Detail
-
onRenderingStarted
void onRenderingStarted(RenderingExecutorEvent ev)
Called by the executor when rendering has started.
-
onRenderingCompleted
void onRenderingCompleted(RenderingExecutorEvent ev)
Called by the executor when rendering has been completed.
-
onRenderingFailed
void onRenderingFailed(RenderingExecutorEvent ev)
Called by the executor when rendering failed for some reason.
-
-