Skip to content

Commit

Permalink
Update generated files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Grauenwolf committed Jul 5, 2022
1 parent 6bebb95 commit 479e2b3
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 456 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,6 @@ public System.Boolean TryCommit()
return __Trait0.TryCommit();
}

/// <summary>
/// Tries to commits the transaction and disposes the underlying connection.
/// </summary>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryCommitAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryCommitAsync(cancellationToken);
}

/// <summary>
/// Tries to rollback the transaction associated with this data source.
/// </summary>
Expand All @@ -154,57 +145,6 @@ public System.Boolean TryRollback()
return __Trait0.TryRollback();
}

/// <summary>
/// Tries to roll back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Boolean TryRollback(System.String savepointName)
{
return __Trait0.TryRollback(savepointName);
}

/// <summary>
/// Tries to roll back the transaction.
/// </summary>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryRollbackAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryRollbackAsync(cancellationToken);
}

/// <summary>
/// Tries to roll back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <param name="cancellationToken"></param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryRollbackAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryRollbackAsync(savepointName, cancellationToken);
}

/// <summary>
/// Tries to create a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Boolean TrySave(System.String savepointName)
{
return __Trait0.TrySave(savepointName);
}

/// <summary>
/// Tries to creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <param name="cancellationToken"></param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TrySaveAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TrySaveAsync(savepointName, cancellationToken);
}

/// <summary>
/// Modifies this data source with additional audit rules.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,6 @@ public void Commit()
__Trait0.Commit();
}

/// <summary>
/// Commits the transaction and disposes the underlying connection.
/// </summary>
public System.Threading.Tasks.Task CommitAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.CommitAsync(cancellationToken);
}

/// <summary>
/// Gets the database metadata.
/// </summary>
Expand Down Expand Up @@ -153,15 +145,6 @@ private MySqlConnector.MySqlTransaction m_Transaction
get => __Trait0.m_Transaction;
init => __Trait0.m_Transaction = value;
}
/// <summary>
/// Rolls back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
public void Rollback(System.String savepointName)
{
__Trait0.Rollback(savepointName);
}

/// <summary>
/// Rolls back the transaction and disposes the underlying connection.
/// </summary>
Expand All @@ -170,43 +153,6 @@ public void Rollback()
__Trait0.Rollback();
}

/// <summary>
/// Rolls back the transaction and disposes the underlying connection.
/// </summary>
public System.Threading.Tasks.Task RollbackAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.RollbackAsync(cancellationToken);
}

/// <summary>
/// Rolls back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <param name="cancellationToken"></param>
public System.Threading.Tasks.Task RollbackAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.RollbackAsync(savepointName, cancellationToken);
}

/// <summary>
/// Creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
public void Save(System.String savepointName)
{
__Trait0.Save(savepointName);
}

/// <summary>
/// Creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <param name="cancellationToken"></param>
public System.Threading.Tasks.Task SaveAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.SaveAsync(savepointName, cancellationToken);
}

/// <summary>
/// Tests the connection.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,6 @@ public System.Boolean TryCommit()
return __Trait0.TryCommit();
}

/// <summary>
/// Tries to commits the transaction and disposes the underlying connection.
/// </summary>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryCommitAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryCommitAsync(cancellationToken);
}

/// <summary>
/// Tries to rollback the transaction associated with this data source.
/// </summary>
Expand All @@ -154,57 +145,6 @@ public System.Boolean TryRollback()
return __Trait0.TryRollback();
}

/// <summary>
/// Tries to roll back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Boolean TryRollback(System.String savepointName)
{
return __Trait0.TryRollback(savepointName);
}

/// <summary>
/// Tries to roll back the transaction.
/// </summary>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryRollbackAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryRollbackAsync(cancellationToken);
}

/// <summary>
/// Tries to roll back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <param name="cancellationToken"></param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryRollbackAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryRollbackAsync(savepointName, cancellationToken);
}

/// <summary>
/// Tries to create a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Boolean TrySave(System.String savepointName)
{
return __Trait0.TrySave(savepointName);
}

/// <summary>
/// Tries to creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <param name="cancellationToken"></param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TrySaveAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TrySaveAsync(savepointName, cancellationToken);
}

/// <summary>
/// Modifies this data source with additional audit rules.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,6 @@ public void Commit()
__Trait0.Commit();
}

/// <summary>
/// Commits the transaction and disposes the underlying connection.
/// </summary>
public System.Threading.Tasks.Task CommitAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.CommitAsync(cancellationToken);
}

/// <summary>
/// Gets the database metadata.
/// </summary>
Expand Down Expand Up @@ -153,15 +145,6 @@ private Npgsql.NpgsqlTransaction m_Transaction
get => __Trait0.m_Transaction;
init => __Trait0.m_Transaction = value;
}
/// <summary>
/// Rolls back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
public void Rollback(System.String savepointName)
{
__Trait0.Rollback(savepointName);
}

/// <summary>
/// Rolls back the transaction and disposes the underlying connection.
/// </summary>
Expand All @@ -170,43 +153,6 @@ public void Rollback()
__Trait0.Rollback();
}

/// <summary>
/// Rolls back the transaction and disposes the underlying connection.
/// </summary>
public System.Threading.Tasks.Task RollbackAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.RollbackAsync(cancellationToken);
}

/// <summary>
/// Rolls back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <param name="cancellationToken"></param>
public System.Threading.Tasks.Task RollbackAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.RollbackAsync(savepointName, cancellationToken);
}

/// <summary>
/// Creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
public void Save(System.String savepointName)
{
__Trait0.Save(savepointName);
}

/// <summary>
/// Creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <param name="cancellationToken"></param>
public System.Threading.Tasks.Task SaveAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.SaveAsync(savepointName, cancellationToken);
}

/// <summary>
/// Tests the connection.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,6 @@ public System.Boolean TryCommit()
return __Trait0.TryCommit();
}

/// <summary>
/// Tries to commits the transaction and disposes the underlying connection.
/// </summary>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryCommitAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryCommitAsync(cancellationToken);
}

/// <summary>
/// Tries to rollback the transaction associated with this data source.
/// </summary>
Expand All @@ -154,57 +145,6 @@ public System.Boolean TryRollback()
return __Trait0.TryRollback();
}

/// <summary>
/// Tries to roll back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Boolean TryRollback(System.String savepointName)
{
return __Trait0.TryRollback(savepointName);
}

/// <summary>
/// Tries to roll back the transaction.
/// </summary>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryRollbackAsync(System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryRollbackAsync(cancellationToken);
}

/// <summary>
/// Tries to roll back the transaction to the indicated save point.
/// </summary>
/// <param name="savepointName">The name of the savepoint to roll back to.</param>
/// <param name="cancellationToken"></param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TryRollbackAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TryRollbackAsync(savepointName, cancellationToken);
}

/// <summary>
/// Tries to create a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Boolean TrySave(System.String savepointName)
{
return __Trait0.TrySave(savepointName);
}

/// <summary>
/// Tries to creates a savepoint in the transaction. This allows all commands that are executed after the savepoint was established to be rolled back, restoring the transaction state to what it was at the time of the savepoint.
/// </summary>
/// <param name="savepointName">The name of the savepoint to be created.</param>
/// <param name="cancellationToken"></param>
/// <returns>True if there was an open transaction associated with this data source, otherwise false.</returns>
public System.Threading.Tasks.Task<bool> TrySaveAsync(System.String savepointName, System.Threading.CancellationToken cancellationToken = default)
{
return __Trait0.TrySaveAsync(savepointName, cancellationToken);
}

/// <summary>
/// Modifies this data source with additional audit rules.
/// </summary>
Expand Down
Loading

0 comments on commit 479e2b3

Please sign in to comment.