congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
EJBClientContext.getInvocationTimeout
Code IndexAdd Tabnine to your IDE (free)

How to use
getInvocationTimeout
method
in
org.jboss.ejb.client.EJBClientContext

Best Java code snippets using org.jboss.ejb.client.EJBClientContext.getInvocationTimeout (Showing top 3 results out of 315)

origin: wildfly/wildfly

EJBClientInvocationContext(final EJBInvocationHandler<?> invocationHandler, final EJBClientContext ejbClientContext, final Object invokedProxy, final Object[] parameters, final EJBProxyInformation.ProxyMethodInfo methodInfo, final int allowedRetries, final Supplier<AuthenticationContext> authenticationContextSupplier) {
  super(invocationHandler.getLocator(), ejbClientContext);
  this.invocationHandler = invocationHandler;
  authenticationContext = authenticationContextSupplier != null ? authenticationContextSupplier.get() : AuthenticationContext.captureCurrent();
  this.invokedProxy = invokedProxy;
  this.parameters = parameters;
  this.methodInfo = methodInfo;
  long timeout = invocationHandler.getInvocationTimeout();
  if (timeout == -1) {
    timeout = ejbClientContext.getInvocationTimeout();
  }
  this.timeout = timeout;
  remainingRetries = allowedRetries;
  interceptorList = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
}
origin: wildfly/jboss-ejb-client

EJBClientInvocationContext(final EJBInvocationHandler<?> invocationHandler, final EJBClientContext ejbClientContext, final Object invokedProxy, final Object[] parameters, final EJBProxyInformation.ProxyMethodInfo methodInfo, final int allowedRetries, final Supplier<AuthenticationContext> authenticationContextSupplier) {
  super(invocationHandler.getLocator(), ejbClientContext);
  this.invocationHandler = invocationHandler;
  authenticationContext = authenticationContextSupplier != null ? authenticationContextSupplier.get() : AuthenticationContext.captureCurrent();
  this.invokedProxy = invokedProxy;
  this.parameters = parameters;
  this.methodInfo = methodInfo;
  long timeout = invocationHandler.getInvocationTimeout();
  if (timeout == -1) {
    timeout = ejbClientContext.getInvocationTimeout();
  }
  this.timeout = timeout;
  remainingRetries = allowedRetries;
  interceptorList = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
}
origin: org.jboss.eap/wildfly-client-all

EJBClientInvocationContext(final EJBInvocationHandler<?> invocationHandler, final EJBClientContext ejbClientContext, final Object invokedProxy, final Object[] parameters, final EJBProxyInformation.ProxyMethodInfo methodInfo, final int allowedRetries, final Supplier<AuthenticationContext> authenticationContextSupplier) {
  super(invocationHandler.getLocator(), ejbClientContext);
  this.invocationHandler = invocationHandler;
  authenticationContext = authenticationContextSupplier != null ? authenticationContextSupplier.get() : AuthenticationContext.captureCurrent();
  this.invokedProxy = invokedProxy;
  this.parameters = parameters;
  this.methodInfo = methodInfo;
  long timeout = invocationHandler.getInvocationTimeout();
  if (timeout == -1) {
    timeout = ejbClientContext.getInvocationTimeout();
  }
  this.timeout = timeout;
  remainingRetries = allowedRetries;
  interceptorList = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
}
org.jboss.ejb.clientEJBClientContextgetInvocationTimeout

Javadoc

Get the configured invocation timeout. A value of zero indicates that invocations never time out.

Popular methods of EJBClientContext

  • setSelector
  • getContextManager
    Get the context manager.
  • getAttachment
  • <init>
  • calculateMethodInterceptors
  • create
  • createSession
  • createSessionCreationInvocationContext
  • getClassPathInterceptors
  • getClusterNodeSelector
  • getConfiguredConnections
    Get the pre-configured connections for this context. This information may not be used by some transp
  • getConfiguredPerClassInterceptors
  • getConfiguredConnections,
  • getConfiguredPerClassInterceptors,
  • getConfiguredPerMethodInterceptors,
  • getCurrent,
  • getDeploymentNodeSelector,
  • getGlobalInterceptors,
  • getInterceptors,
  • getMaximumConnectedClusterNodes,
  • getTransportProvider

Popular in Java

  • Reading from database using SQL prepared statement
  • getSharedPreferences (Context)
  • getResourceAsStream (ClassLoader)
  • getSupportFragmentManager (FragmentActivity)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Path (java.nio.file)
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • JOptionPane (javax.swing)
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now