Package com.bea.wcp.sip
Interface WlssAsynchronousAction
- All Superinterfaces:
Serializable
Deprecated.
Use JSR-236(Concurrency Utilities for Java EE concurrency) API javax.enterprise.concurrent.ManagedExecutorService#submit instead
This interface represents the work to be done on a SipApplicationSession in
an asynchronous manner. The container executes the run method of this object to
perform the work and guarantees that this work is done in a thread-safe manner.
- Author:
- Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
-
Method Summary
Modifier and TypeMethodDescriptionvoidrun(javax.servlet.sip.SipApplicationSession session) Deprecated.The run method contains the business logic to be executed on the SipApplicationSession for a given applicationSessionId in an asynchronous manner.
-
Method Details
-
run
void run(javax.servlet.sip.SipApplicationSession session) Deprecated.The run method contains the business logic to be executed on the SipApplicationSession for a given applicationSessionId in an asynchronous manner.- Parameters:
session- the SipApplicationSession that needs to be accessed or updated asynchronously.- See Also:
-