| Package | Description |
|---|---|
| org.apache.hadoop.yarn.server.sharedcachemanager.store |
| Modifier and Type | Method | Description |
|---|---|---|
java.util.Collection<SharedCacheResourceReference> |
InMemorySCMStore.getResourceReferences(java.lang.String key) |
Returns the list of resource references currently registered under the
cache entry.
|
abstract java.util.Collection<SharedCacheResourceReference> |
SCMStore.getResourceReferences(java.lang.String key) |
Get the
SharedCacheResourceReference(s) associated with the
resource. |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
InMemorySCMStore.addResourceReference(java.lang.String key,
SharedCacheResourceReference ref) |
Adds the provided resource reference to the cache resource under the key,
and updates the access time.
|
abstract java.lang.String |
SCMStore.addResourceReference(java.lang.String key,
SharedCacheResourceReference ref) |
Add a
SharedCacheResourceReference to a resource and update
the resource access time. |
boolean |
InMemorySCMStore.removeResourceReference(java.lang.String key,
SharedCacheResourceReference ref,
boolean updateAccessTime) |
Removes the provided resource reference from the resource.
|
abstract boolean |
SCMStore.removeResourceReference(java.lang.String key,
SharedCacheResourceReference ref,
boolean updateAccessTime) |
Remove a
SharedCacheResourceReference from a resource. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
InMemorySCMStore.removeResourceReferences(java.lang.String key,
java.util.Collection<SharedCacheResourceReference> refs,
boolean updateAccessTime) |
Removes the provided collection of resource references from the resource.
|
abstract void |
SCMStore.removeResourceReferences(java.lang.String key,
java.util.Collection<SharedCacheResourceReference> refs,
boolean updateAccessTime) |
Remove a collection of
SharedCacheResourceReferences from a
resource. |
Copyright © 2008–2025 Apache Software Foundation. All rights reserved.