Searched defs:thread (Results 1 - 7 of 7) sorted by relevance

/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jta/
H A DNativeXAResource.java47 * new methods for thread association support and resource
53 // added functionality for thread management
56 * Opens the RM for the calling thread (xa_open).
61 * Closes the RM for the calling thread (xa_close).
66 * checks if the thread has opened (xa_open) the RM atleast once.
68 * @param thread the thread to be checked for resource initialization.
70 * @return true if the thread has opened the resource (RM) atleast once.
72 public boolean isInitialized(Thread thread); argument
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DWebComponentInvocation.java108 private Thread thread = null; field in class:WebComponentInvocation.PairKey
113 thread = thr;
143 if (thread != null) {
144 eq = (thread.equals(p.thread));
146 eq = (p.thread == null);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DDirContextURLStreamHandler.java102 * Bindings thread - directory context. Keyed by thread id.
155 * Returns true if the thread or the context class loader of the current
156 * thread is bound.
188 * Binds a directory context to a thread.
196 * Unbinds a directory context to a thread.
218 // Checking thread biding
265 public static DirContext get(Thread thread) { argument
266 return threadBindings.get(thread);
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/security/web/
H A DGlassFishSingleSignOn.java88 * The background thread.
90 private Thread thread = null; field in class:GlassFishSingleSignOn
93 * The background thread completion semaphore.
126 * Return expire thread interval (seconds)
136 * Set expire thread interval (seconds)
184 // Start the background reaper thread
209 // Stop the background reaper thread
534 } catch (Throwable e) { // don't let thread die
557 * Start the background thread that will periodically check for
562 if (thread !
[all...]
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/
H A DMonitorableThreadPool.java53 * Grizzly thread pool implementation that emits probe events.
236 Thread thread) {
242 thread.getId());
252 Thread thread) {
258 thread.getId());
235 threadAllocatedEvent(String threadPoolName, Thread thread) argument
251 threadReleasedEvent(String threadPoolName, Thread thread) argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DContainerBase.java297 * The background thread.
299 private Thread thread = null; field in class:ContainerBase
303 * The background thread completion semaphore.
355 * their own thread). Setting this to a positive value will cause
356 * a thread to be spawn. After waiting the specified amount of time,
357 * the thread will invoke the executePeriodic method on this container
1194 // Start our thread
1222 // Stop our thread
1486 * this notification synchronously using the calling thread.
1718 * Start the background thread tha
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DConnector.java325 * The shutdown signal to our background thread
330 * The background thread.
332 private Thread thread = null; field in class:Connector

Completed in 906 milliseconds