net.refractions.udig.ui.operations
Interface ILazyOpListener


public interface ILazyOpListener

Notified when the results of the OpFilter is obtained by the LazyOpFilter

Since:
1.1.0
Author:
Jesse

Method Summary
 void notifyResultObtained(boolean result)
          Called when a result has been found.
 

Method Detail

notifyResultObtained

void notifyResultObtained(boolean result)
Called when a result has been found. Please ensure that this does not block as it is called within a lock. A dangerous practice admittedly but has to be done in this case so the tools are correctly set. If a lot of work must be done make sure it is done in a new thread

Parameters:
result - the result of whether the OpFilter evaluated to true or false.