Interface ODatabasePooled

All Known Implementing Classes:
ODatabaseDocumentTxPooled, OObjectDatabaseTxPooled

public interface ODatabasePooled
Basic interface for pooled database implementations.
Author:
Luca Garulli (l.garulli--(at)--orientdb.com)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Force closing the current instance avoiding to being reused.
    boolean
    Tells if the underlying database is closed.
    void
    reuse(Object iOwner, Object[] iAdditionalArgs)
    Reuses current instance.
  • Method Details

    • reuse

      void reuse(Object iOwner, Object[] iAdditionalArgs)
      Reuses current instance.
      Parameters:
      iOwner -
      iAdditionalArgs -
    • isUnderlyingOpen

      boolean isUnderlyingOpen()
      Tells if the underlying database is closed.
    • forceClose

      void forceClose()
      Force closing the current instance avoiding to being reused.