Browse Source

add file license header.

master
Savorboard 6 years ago
parent
commit
c7010473ee
2 changed files with 8 additions and 2 deletions
  1. +4
    -1
      src/DotNetCore.CAP.MongoDB/MongoTransaction.cs
  2. +4
    -1
      src/DotNetCore.CAP/Abstractions/IMongoTransaction.cs

+ 4
- 1
src/DotNetCore.CAP.MongoDB/MongoTransaction.cs View File

@@ -1,4 +1,6 @@
using System;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System.Threading.Tasks; using System.Threading.Tasks;
using DotNetCore.CAP.Abstractions; using DotNetCore.CAP.Abstractions;
using MongoDB.Driver; using MongoDB.Driver;
@@ -8,6 +10,7 @@ namespace DotNetCore.CAP.MongoDB
public class MongoTransaction : IMongoTransaction public class MongoTransaction : IMongoTransaction
{ {
private readonly IMongoClient _client; private readonly IMongoClient _client;

public MongoTransaction(IMongoClient client) public MongoTransaction(IMongoClient client)
{ {
_client = client; _client = client;


+ 4
- 1
src/DotNetCore.CAP/Abstractions/IMongoTransaction.cs View File

@@ -1,3 +1,6 @@
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System; using System;
using System.Threading.Tasks; using System.Threading.Tasks;


@@ -12,7 +15,7 @@ namespace DotNetCore.CAP.Abstractions
bool AutoCommit { get; set; } bool AutoCommit { get; set; }


Task<IMongoTransaction> BegeinAsync(bool autoCommit = true); Task<IMongoTransaction> BegeinAsync(bool autoCommit = true);
IMongoTransaction Begein(bool autoCommit = true); IMongoTransaction Begein(bool autoCommit = true);
} }
} }

Loading…
Cancel
Save