Uses of Interface
org.geotools.process.Process
-
Packages that use Process Package Description org.geotools.process Define a Process API used to wrap up processes for reuse.org.geotools.process.factory org.geotools.process.feature org.geotools.process.function org.geotools.process.impl Class to help developers implement additional Processes. -
-
Uses of Process in org.geotools.process
Subinterfaces of Process in org.geotools.process Modifier and Type Interface Description interface
RenderingProcess
An interface to be implemented by processes meant to be integrated as feature collection/grid coverage transformations in a rendering chain.Methods in org.geotools.process that return Process Modifier and Type Method Description Process
ProcessFactory. create(Name name)
Create a process for execution.static Process
Processors. createProcess(Name name)
Look up an implementation of the named process on the classpath.Methods in org.geotools.process with parameters of type Process Modifier and Type Method Description static Callable<Map<String,Object>>
Processors. createCallable(Process process, Map<String,Object> input)
Used to wrap a Process up as a Callable for use with an existing ExecutorServiceProgress
ProcessExecutor. submit(Process task, Map<String,Object> input)
Submits a process for execution and returns a Progress representing the pending results of the task.Progress
ThreadPoolProcessExecutor. submit(Process task, Map<String,Object> input)
Constructors in org.geotools.process with parameters of type Process Constructor Description ProgressTask(Process process, Map<String,Object> input)
Creates a ProgressTask that will execute the given Process when run. -
Uses of Process in org.geotools.process.factory
Methods in org.geotools.process.factory that return Process Modifier and Type Method Description Process
AnnotationDrivenProcessFactory. create(Name name)
Cerate a process (for the indicated name). -
Uses of Process in org.geotools.process.feature
Classes in org.geotools.process.feature that implement Process Modifier and Type Class Description class
AbstractFeatureCollectionProcess
A Process for feature collections.class
FeatureToFeatureProcess
Abstract implementation of Process for feature collections. -
Uses of Process in org.geotools.process.function
Constructors in org.geotools.process.function with parameters of type Process Constructor Description ProcessFunction(Name processName, List<Expression> inputExpressions, Map<String,Parameter<?>> parameters, Process process, Literal fallbackValue)
-
Uses of Process in org.geotools.process.impl
Classes in org.geotools.process.impl that implement Process Modifier and Type Class Description class
AbstractProcess
Provide an implementation of the process method to implement your own Process.class
SimpleProcess
Provide an implementation for a simple process (ie so quick and easy it is not going to need to report progress as it goes).Methods in org.geotools.process.impl that return Process Modifier and Type Method Description protected abstract Process
SingleProcessFactory. create()
Process
SingleProcessFactory. create(Name name)
-