34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Data;
|
|||
|
using System.Data.Common;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
using Npgsql;
|
|||
|
|
|||
|
namespace PluralKit.Core
|
|||
|
{
|
|||
|
public interface IPKConnection: IDbConnection, IAsyncDisposable
|
|||
|
{
|
|||
|
public Guid ConnectionId { get; }
|
|||
|
|
|||
|
public Task OpenAsync(CancellationToken cancellationToken = default);
|
|||
|
public Task CloseAsync();
|
|||
|
|
|||
|
public Task ChangeDatabaseAsync(string databaseName, CancellationToken ct = default);
|
|||
|
|
|||
|
public ValueTask<DbTransaction> BeginTransactionAsync(CancellationToken ct = default) => BeginTransactionAsync(IsolationLevel.Unspecified, ct);
|
|||
|
public ValueTask<DbTransaction> BeginTransactionAsync(IsolationLevel level, CancellationToken ct = default);
|
|||
|
|
|||
|
public NpgsqlBinaryImporter BeginBinaryImport(string copyFromCommand);
|
|||
|
public NpgsqlBinaryExporter BeginBinaryExport(string copyToCommand);
|
|||
|
|
|||
|
public void ReloadTypes();
|
|||
|
|
|||
|
[Obsolete] new void Open();
|
|||
|
[Obsolete] new void Close();
|
|||
|
|
|||
|
[Obsolete] new IDbTransaction BeginTransaction();
|
|||
|
[Obsolete] new IDbTransaction BeginTransaction(IsolationLevel il);
|
|||
|
}
|
|||
|
}
|