Table of Contents

Interface ITables

Namespace
Apache.Ignite.Table
Assembly
Apache.Ignite.dll

Table management.

public interface ITables

Methods

GetTableAsync(QualifiedName)

Gets a table by qualified name.

Task<ITable?> GetTableAsync(QualifiedName name)

Parameters

name QualifiedName

Table name.

Returns

Task<ITable>

A Task representing the asynchronous operation.

GetTableAsync(string)

Gets a table by name.

Task<ITable?> GetTableAsync(string name)

Parameters

name string

Table name.

Returns

Task<ITable>

A Task representing the asynchronous operation.

GetTablesAsync()

Gets all tables.

Task<IList<ITable>> GetTablesAsync()

Returns

Task<IList<ITable>>

A Task representing the asynchronous operation.