Changeset 9266 for trunk/sources/HeuristicLab.Services.Hive.DataAccess
- Timestamp:
- 03/01/13 14:25:49 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.Hive.DataAccess/3.3/ITransactionManager.cs
r7259 r9266 24 24 namespace HeuristicLab.Services.Hive.DataAccess { 25 25 public interface ITransactionManager { 26 void UseTransaction(Action call, bool serializable= false, bool longRunning = false);27 T UseTransaction<T>(Func<T> call, bool serializable= false, bool longRunning = false);26 void UseTransaction(Action call, bool repeatableRead = false, bool longRunning = false); 27 T UseTransaction<T>(Func<T> call, bool repeatableRead = false, bool longRunning = false); 28 28 } 29 29 }
Note: See TracChangeset
for help on using the changeset viewer.