Bug 9060: TracingBroker printOpenTransactions
[controller.git] / opendaylight / md-sal / mdsal-trace / dom-impl / src / main / java / org / opendaylight / controller / md / sal / trace / closetracker / impl / CloseTracked.java
index f5fd341b55c4a169e19b6a82b593de9b70e92536..926c8b3b8ee5e69dfb4a221bcafb5c815b257e7b 100644 (file)
@@ -10,9 +10,9 @@ package org.opendaylight.controller.md.sal.trace.closetracker.impl;
 import javax.annotation.Nullable;
 
 /**
 import javax.annotation.Nullable;
 
 /**
- * Object which can track where it has been created, and if it has been correctly "closed".
+ * Object which can track where something has been created, and if it has been correctly "closed".
  *
  *
- * <p>Includes preserving the context of the call stack which created this object, and the instant it was created.
+ * <p>Includes preserving the context of the call stack which created an object, and the instant it was created.
  *
  * @author Michael Vorburger.ch
  */
  *
  * @author Michael Vorburger.ch
  */
@@ -20,4 +20,5 @@ public interface CloseTracked<T extends CloseTracked<T>> {
 
     @Nullable StackTraceElement[] getAllocationContextStackTrace();
 
 
     @Nullable StackTraceElement[] getAllocationContextStackTrace();
 
+    CloseTracked<T> getRealCloseTracked();
 }
 }