Member Junction
    Preparing search index...

    Type Alias GetObjectStreamParams

    Parameters for the FileStorageBase.GetObjectStream operation.

    Mirrors GetObjectParams for object resolution — prefer objectId (provider-native key) to bypass slow path resolution, falling back to fullPath. Optionally include a Range to request only a slice of the object.

    type GetObjectStreamParams = {
        fullPath?: string;
        objectId?: string;
        Range?: ByteRange;
    }
    Index

    Properties

    fullPath?: string

    Full path to the object (e.g., 'media/video.mp4'). Requires path resolution.

    objectId?: string

    Provider-specific object ID (Box file ID, S3 key, Azure blob name, etc.). Bypasses path resolution for significantly faster access.

    Range?: ByteRange

    Optional inclusive byte range. When omitted the whole object is streamed.