Repository URL to install this package:
|
Version:
2.0.0rc1 ▾
|
from typing import Generic, TypeVar
from ray.util.annotations import PublicAPI
T = TypeVar("T")
# TODO(ekl) this is a dummy generic ref type for documentation purposes only.
# We should try to make the Cython ray.ObjectRef properly generic.
@PublicAPI
class ObjectRef(Generic[T]):
pass