Learn R Programming

geoknife (version 1.6.11)

cancel: cancel a geo-web processing request

Description

Cancel process for geojob

Usage

cancel(.Object)

# S4 method for geojob cancel(.Object)

# S4 method for missing cancel(.Object)

Value

A geojob object with no active job

Arguments

.Object

a geojob object with an active geo-web processing request.

Details

cancel is a method for cancelling a geo-web processing request.

See Also

check, start

Examples

Run this code
wd <- webdata('prism')
wg <- webgeom('state::New Hampshire')
wp <- webprocess()

if (FALSE) {
if(!any(is.null(wp), is.null(wg), is.null(wd))) {
 gj <- geojob()
 xml(gj) <- XML(wg, wd, wp)
 url(gj) <- url(wp)
}

gj <- start(gj)
gj <- cancel(gj)
}

Run the code above in your browser using DataLab