Learn R Programming

phylosim (version 3.0.5)

getId.Process: Get the unique identifier of a Process object

Description

Get the unique identifier of a Process object. The unique identifier is the concatenation of the class, the object name as returned by getName() and the object hash as returned by hashCode().

Usage

# S3 method for Process
getId(this, ...)

Arguments

this

A Process object.

...

Not used.

Value

A character vector of length one.

See Also

For more information see Process.

Examples

Run this code
# NOT RUN {
	# create a Process object
	p<-Process()
	# get unique id
	getId(p)
	# get unique id via virtual field
	p$id

 
# }

Run the code above in your browser using DataLab