public interface Process
The Process interface is similar to Callable, in that both are
 designed for classes whose instances are potentially executed by another thread. A
 Callable, however, does not report progress.
 
The Executors class contains utility methods to convert from other common forms to
 Callable classes.
| Modifier and Type | Method and Description | 
|---|---|
| Map<String,Object> | execute(Map<String,Object> input,
       ProgressListener monitor)Execute this process with the provided inputs. | 
Map<String,Object> execute(Map<String,Object> input, ProgressListener monitor) throws ProcessException
input - Input parameters for this processmonitor - listener for handling the progress of the processProcessExceptionCopyright © 1996–2019 Geotools. All rights reserved.