DataLakeStoreFrontEndAdapter Class

Definition

A front end adapter that communicates with the DataLake Store. This is a syncrhonous call adapter, which has certain efficiency limitations. In the future, new adapters that are created should consider implementing the methods asynchronously.

public class DataLakeStoreFrontEndAdapter : Microsoft.Azure.Management.DataLake.Store.IFrontEndAdapter
type DataLakeStoreFrontEndAdapter = class
    interface IFrontEndAdapter
Public Class DataLakeStoreFrontEndAdapter
Implements IFrontEndAdapter
Inheritance
DataLakeStoreFrontEndAdapter
Implements

Constructors

DataLakeStoreFrontEndAdapter(String, IDataLakeStoreFileSystemManagementClient)

Initializes a new instance of the DataLakeStoreFrontEndAdapter class.

DataLakeStoreFrontEndAdapter(String, IDataLakeStoreFileSystemManagementClient, CancellationToken)

Initializes a new instance of the DataLakeStoreFrontEndAdapter class.

Methods

AppendToStream(String, Byte[], Int64, Int32)

Appends to stream.

Concatenate(String, String[], Boolean)

Concatenates the given input streams (in order) into the given target stream. At the end of this operation, input streams will be deleted.

CreateStream(String, Boolean, Byte[], Int32)

Creates a new, empty stream at the given path.

DeleteStream(String, Boolean, Boolean)

Deletes an existing stream at the given path.

GetStreamLength(String, Boolean)

Gets a value indicating the length of a stream, in bytes.

IsDirectory(String)

Determines if the stream with given path on the server is a directory or a terminating file. This is used exclusively for download.

ListDirectory(String, Boolean)

Lists the Data Lake Store directory specified.

ReadStream(String, Int64, Int64, Boolean)
StreamExists(String, Boolean)

Determines if the stream with given path exists.

Applies to