Searched defs:timeOut (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DCurrentImpl.java101 private int timeOut = 0; field in class:CurrentImpl
257 controlImpl = ((TransactionFactoryImpl) factory).localCreate(timeOut);
259 Control control = factory.create(timeOut);
895 timeOut = timeout;
900 return timeOut;
H A DTransactionFactoryImpl.java129 * @param timeOut The timeout value for the transaction.
137 public Control create(int timeOut) throws SystemException { argument
141 ControlImpl cimpl = localCreate(timeOut);
160 * @param timeOut The timeout value for the transaction.
168 public ControlImpl localCreate(int timeOut) throws SystemException { argument
192 coordinator = new TopCoordinator(timeOut);
H A DTopCoordinator.java171 * @param timeOut The time-out value for the transaction.
179 TopCoordinator(int timeOut) throws LogicErrorException { argument
245 timeOut)) {
262 * @param timeOut The timeout value for the transaction.
273 TopCoordinator(int timeOut, GlobalTID globalTID, Coordinator superior, argument
336 this, timeOut)) {
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/common/util/admin/
H A DManagedFile.java85 final int timeOut; field in class:ManagedFile
102 * @param timeOut the max time in milliseconds to wait for a read or write lock
106 public ManagedFile(File file, int timeOut, int maxHoldingTime) throws IOException { argument
109 this.timeOut = timeOut;
114 * Blocks for {@link ManagedFile#timeOut} milliseconds for the write access
119 * @throws TimeoutException if the lock cannot be obtained before the timeOut
128 * Blocks for {@link ManagedFile#timeOut} milliseconds for the read access
133 * @throws TimeoutException if the lock cannot be obtained before the timeOut
169 long endTime = System.currentTimeMillis() + timeOut;
212 access(boolean shared, String mode, int timeOut) argument
[all...]

Completed in 30 milliseconds