Skip to contents

Print a shard_pool Object

Usage

# S3 method for class 'shard_pool'
print(x, ...)

Arguments

x

A shard_pool object.

...

Further arguments (ignored).

Value

The input x, invisibly.

Examples

# \donttest{
p <- pool_create(2)
print(p)
#> shard worker pool
#>   Workers: 2 
#>   RSS limit: 2.0 GB 
#>   Drift threshold: 50% 
#>   Created: 2026-03-30 20:47:30 
#>   Stats:
#>     Total recycles: 0 
#>     Total deaths: 0 
#>     Total tasks: 0 
pool_stop(p)
# }