Package org.geotools.swing
Interface RenderingExecutorListener
-
- All Known Implementing Classes:
AbstractMapPane
,JLayeredMapPane
,JMapPane
public interface RenderingExecutorListener
Listens 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 void
onRenderingCompleted(RenderingExecutorEvent ev)
Called by the executor when rendering has been completed.void
onRenderingFailed(RenderingExecutorEvent ev)
Called by the executor when rendering failed for some reason.void
onRenderingStarted(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.
-
-