Package org.eclipse.emf.cdo.util
Schnittstelle CDOUpdatable
- Alle bekannten Unterschnittstellen:
CDONet4jSession,CDOSession,CDOSession,CDOTransaction,CDOView,InternalCDOSession,InternalCDOTransaction,InternalCDOView
- Alle bekannten Implementierungsklassen:
CDOPushTransaction
public interface CDOUpdatable
Represents facilities that can receive
passive updates.- Seit:
- 3.0
- Autor:
- Eike Stepper
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
-
Feldübersicht
Felder -
Methodenübersicht
Modifizierer und TypMethodeBeschreibunglongReturns the time stamp of the last commit operation.booleanrunAfterUpdate(long updateTime, Runnable runnable) voidwaitForUpdate(long updateTime) Blocks the calling thread until a commit operation with the given time stamp (or higher) has occurred.booleanwaitForUpdate(long updateTime, long timeoutMillis) Blocks the calling thread until a commit operation with the given time stamp (or higher) has occurred or the given timeout has expired.
-
Felddetails
-
NO_TIMEOUT
static final long NO_TIMEOUT- Siehe auch:
-
-
Methodendetails
-
getLastUpdateTime
long getLastUpdateTime()Returns the time stamp of the last commit operation. May not be accurate ifpassive updatesare disabled. -
waitForUpdate
void waitForUpdate(long updateTime) Blocks the calling thread until a commit operation with the given time stamp (or higher) has occurred.- Parameter:
updateTime- the time stamp of the update to wait for in milliseconds since Unix epoch.
-
waitForUpdate
boolean waitForUpdate(long updateTime, long timeoutMillis) Blocks the calling thread until a commit operation with the given time stamp (or higher) has occurred or the given timeout has expired.- Parameter:
updateTime- the time stamp of the update to wait for in milliseconds since Unix epoch.timeoutMillis- the maximum number of milliseconds to wait for the update to occur, orNO_TIMEOUTto wait indefinitely.- Gibt zurück:
trueif the specified commit operation has occurred within the given timeout period,falseotherwise.
-
runAfterUpdate
- Seit:
- 4.3
-