*** empty log message ***
[IRC.git] / Robust / Transactions / TransactionalIO / src / TransactionalIO / core / OffsetLock.java
diff --git a/Robust/Transactions/TransactionalIO/src/TransactionalIO/core/OffsetLock.java b/Robust/Transactions/TransactionalIO/src/TransactionalIO/core/OffsetLock.java
new file mode 100644 (file)
index 0000000..186a7fa
--- /dev/null
@@ -0,0 +1,27 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+
+package TransactionalIO.core;
+
+/**
+ *
+ * @author navid
+ */
+public class OffsetLock {
+    boolean offsetlocked = false;
+
+    public OffsetLock() {
+        offsetlocked = false;
+    }
+    synchronized void acquire(ExtendedTransaction me) {
+        
+    }
+    
+    synchronized void release(ExtendedTransaction me) {
+        
+    }
+    
+
+}