mirror of
https://github.com/wassname/ray.git
synced 2026-08-20 12:40:44 +08:00
Remove unused AddContainedObjectIDs (#7323)
This commit is contained in:
@@ -378,11 +378,6 @@ void CoreWorker::RegisterOwnershipInfoAndResolveFuture(
|
||||
future_resolver_->ResolveFutureAsync(object_id, owner_id, owner_address);
|
||||
}
|
||||
|
||||
void CoreWorker::AddContainedObjectIDs(
|
||||
const ObjectID &object_id, const std::vector<ObjectID> &contained_object_ids) {
|
||||
// TODO(edoakes,swang): integrate with the reference counting logic.
|
||||
}
|
||||
|
||||
Status CoreWorker::SetClientOptions(std::string name, int64_t limit_bytes) {
|
||||
// Currently only the Plasma store supports client options.
|
||||
return plasma_store_provider_->SetClientOptions(name, limit_bytes);
|
||||
|
||||
@@ -169,14 +169,6 @@ class CoreWorker : public rpc::CoreWorkerServiceHandler {
|
||||
const TaskID &owner_id,
|
||||
const rpc::Address &owner_address);
|
||||
|
||||
/// Add metadata about the object IDs contained within another object ID.
|
||||
/// This should be called during deserialization of the outer object ID.
|
||||
///
|
||||
/// \param[in] object_id The object containing IDs.
|
||||
/// \param[in] contained_object_ids The IDs contained in the object.
|
||||
void AddContainedObjectIDs(const ObjectID &object_id,
|
||||
const std::vector<ObjectID> &contained_object_ids);
|
||||
|
||||
///
|
||||
/// Public methods related to storing and retrieving objects.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user