Uses of Interface
info.dmtree.DmtSession
-
Packages that use DmtSession Package Description info.dmtree info.dmtree.spi -
-
Uses of DmtSession in info.dmtree
Methods in info.dmtree that return DmtSession Modifier and Type Method Description DmtSession
DmtAdmin. getSession(java.lang.String subtreeUri)
Opens aDmtSession
for local usage on a given subtree of the DMT with non transactional write lock.DmtSession
DmtAdmin. getSession(java.lang.String subtreeUri, int lockMode)
Opens aDmtSession
for local usage on a specific DMT subtree with a given lock mode.DmtSession
DmtAdmin. getSession(java.lang.String principal, java.lang.String subtreeUri, int lockMode)
Opens aDmtSession
on a specific DMT subtree using a specific lock mode on behalf of a remote principal. -
Uses of DmtSession in info.dmtree.spi
Methods in info.dmtree.spi with parameters of type DmtSession Modifier and Type Method Description void
ExecPlugin. execute(DmtSession session, java.lang.String[] nodePath, java.lang.String correlator, java.lang.String data)
Execute the given node with the given data.TransactionalDataSession
DataPlugin. openAtomicSession(java.lang.String[] sessionRoot, DmtSession session)
This method is called to signal the start of an atomic read-write session when the first reference is made within aDmtSession
to a node which is handled by this plugin.ReadableDataSession
DataPlugin. openReadOnlySession(java.lang.String[] sessionRoot, DmtSession session)
This method is called to signal the start of a read-only session when the first reference is made within aDmtSession
to a node which is handled by this plugin.ReadWriteDataSession
DataPlugin. openReadWriteSession(java.lang.String[] sessionRoot, DmtSession session)
This method is called to signal the start of a non-atomic read-write session when the first reference is made within aDmtSession
to a node which is handled by this plugin.
-