Uses of Class
org.apache.hadoop.yarn.server.sharedcachemanager.store.SharedCacheResourceReference
Packages that use SharedCacheResourceReference
-
Uses of SharedCacheResourceReference in org.apache.hadoop.yarn.server.sharedcachemanager.store
Methods in org.apache.hadoop.yarn.server.sharedcachemanager.store that return types with arguments of type SharedCacheResourceReferenceModifier and TypeMethodDescriptionInMemorySCMStore.getResourceReferences(String key) Returns the list of resource references currently registered under the cache entry.abstract Collection<SharedCacheResourceReference>SCMStore.getResourceReferences(String key) Get theSharedCacheResourceReference(s) associated with the resource.Methods in org.apache.hadoop.yarn.server.sharedcachemanager.store with parameters of type SharedCacheResourceReferenceModifier and TypeMethodDescriptionInMemorySCMStore.addResourceReference(String key, SharedCacheResourceReference ref) Adds the provided resource reference to the cache resource under the key, and updates the access time.abstract StringSCMStore.addResourceReference(String key, SharedCacheResourceReference ref) Add aSharedCacheResourceReferenceto a resource and update the resource access time.booleanInMemorySCMStore.removeResourceReference(String key, SharedCacheResourceReference ref, boolean updateAccessTime) Removes the provided resource reference from the resource.abstract booleanSCMStore.removeResourceReference(String key, SharedCacheResourceReference ref, boolean updateAccessTime) Remove aSharedCacheResourceReferencefrom a resource.Method parameters in org.apache.hadoop.yarn.server.sharedcachemanager.store with type arguments of type SharedCacheResourceReferenceModifier and TypeMethodDescriptionvoidInMemorySCMStore.removeResourceReferences(String key, Collection<SharedCacheResourceReference> refs, boolean updateAccessTime) Removes the provided collection of resource references from the resource.abstract voidSCMStore.removeResourceReferences(String key, Collection<SharedCacheResourceReference> refs, boolean updateAccessTime) Remove a collection ofSharedCacheResourceReferencesfrom a resource.