You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
location: str,
type: [refrence, owner]
backingStore: Optional[str] # Indicate whether the file has an authoritative source (blocks can be empty)
size: int
}
Desired features
Data structure for each object
Interface
createBucket(bucket: str)
deleteBucket(bucket: str)
listBuckets()
create(bucket: str, key: str, size: int, sealedSize: int, blocks = None, backingStore = None)
update(bucket: str, key: str, location: Optional[str], type: Optional[reference, owner], backingStore: Optional[str] size: Optional[int])
resize(bucket: str, key: str, newSize: int)
list(bucket: str, key: str, delimiter='/')
remove(bucket: str, key: str)
removePrefix(bucket: str, prefix: str)
subscribe(bucket: str)
subscribe(bucket: str, key: str)
- Exactsubscribe(bucket: str, prefix: str)
- Use patternunsubscribe(bucket: str)
unsubscribe(bucket: str, key: str)
- Exactunsubscribe(bucket: str, prefix: str)
- Use patternThe text was updated successfully, but these errors were encountered: