Alias for fetch(). Retrieves the R object from shared memory.
Usage
materialize(x)
# S3 method for class 'shard_shared'
materialize(x)
# Default S3 method
materialize(x)
Arguments
- x
A shard_shared object.
Value
The original R object.
Examples
# \donttest{
shared <- share(1:100)
data <- materialize(shared)
close(shared)
# }