Package com.luciad.view.gxy.asynchronous
Interface ILcdGXYAsynchronousLayerRunnable
public interface ILcdGXYAsynchronousLayerRunnable
A layer runnable encapsulates a piece of code that allows to change
and access an asynchronously painted layer in a safe way. This is typically needed when using
ILcdGXYAsynchronousLayerWrapper
.- Since:
- 7.2
-
Method Summary
Modifier and TypeMethodDescriptionvoid
run
(ILcdGXYLayer aSafeGXYLayer) Implementations of this method can safely access and change the given layer.
-
Method Details
-
run
Implementations of this method can safely access and change the given layer.- Parameters:
aSafeGXYLayer
- a layer that can be safely accessed, changed and casted. Typically this is the original layer that was wrapped by aILcdGXYAsynchronousLayerWrapper
.
-