congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
BurlapSkeleton.invoke
Code IndexAdd Tabnine to your IDE (free)

How to use
invoke
method
in
com.caucho.burlap.server.BurlapSkeleton

Best Java code snippets using com.caucho.burlap.server.BurlapSkeleton.invoke (Showing top 8 results out of 315)

origin: com.caucho/com.springsource.com.caucho

/**
 * Invoke the object with the request from the input stream.
 *
 * @param in the Burlap input stream
 * @param out the Burlap output stream
 */
public void invoke(BurlapInput in, BurlapOutput out)
 throws Exception
{
 invoke(_service, in, out);
}
origin: org.vx68k.quercus/hessian

/**
 * Invoke the object with the request from the input stream.
 *
 * @param in the Burlap input stream
 * @param out the Burlap output stream
 */
public void invoke(BurlapInput in, BurlapOutput out)
 throws Exception
{
 invoke(_service, in, out);
}
origin: alipay/sofa-hessian

/**
 * Invoke the object with the request from the input stream.
 *
 * @param in the Burlap input stream
 * @param out the Burlap output stream
 */
public void invoke(BurlapInput in, BurlapOutput out)
  throws Exception
{
  invoke(_service, in, out);
}
origin: alipay/sofa-hessian

  BurlapOutput out = new BurlapOutput(os);
  _skeleton.invoke(in, out);
} catch (RuntimeException e) {
  throw e;
origin: com.caucho/com.springsource.com.caucho

 BurlapOutput out = new BurlapOutput(os);
 _skeleton.invoke(in, out);
} catch (RuntimeException e) {
 throw e;
origin: org.vx68k.quercus/hessian

 BurlapOutput out = new BurlapOutput(os);
 _skeleton.invoke(in, out);
} catch (RuntimeException e) {
 throw e;
origin: com.bbossgroups/bboss-hession

  /**
   * Perform an invocation on the exported object.
   * @param inputStream the request stream
   * @param outputStream the response stream
   * @throws Throwable if invocation failed
   */
  public void invoke(InputStream inputStream, OutputStream outputStream) throws Throwable {
    Assert.notNull(this.skeleton, "Burlap exporter has not been initialized");
    
    try {
      this.skeleton.invoke(new BurlapInput(inputStream), new BurlapOutput(outputStream));
    }
    finally {
      try {
        inputStream.close();
      }
      catch (IOException ex) {
        // ignore
      }
      try {
        outputStream.close();
      }
      catch (IOException ex) {
        // ignore
      }
    
    }
  }
}
origin: apache/servicemix-bundles

/**
 * Perform an invocation on the exported object.
 * @param inputStream the request stream
 * @param outputStream the response stream
 * @throws Throwable if invocation failed
 */
public void invoke(InputStream inputStream, OutputStream outputStream) throws Throwable {
  Assert.notNull(this.skeleton, "Burlap exporter has not been initialized");
  ClassLoader originalClassLoader = overrideThreadContextClassLoader();
  try {
    this.skeleton.invoke(new BurlapInput(inputStream), new BurlapOutput(outputStream));
  }
  finally {
    try {
      inputStream.close();
    }
    catch (IOException ex) {
      // ignore
    }
    try {
      outputStream.close();
    }
    catch (IOException ex) {
      // ignore
    }
    resetThreadContextClassLoader(originalClassLoader);
  }
}
com.caucho.burlap.serverBurlapSkeletoninvoke

Javadoc

Invoke the object with the request from the input stream.

Popular methods of BurlapSkeleton

  • <init>
    Create a new burlap skeleton.
  • getAPIClassName
  • getHomeClassName
  • getMethod
  • getObjectClassName

Popular in Java

  • Reading from database using SQL prepared statement
  • runOnUiThread (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JButton (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Table (org.hibernate.mapping)
    A relational table
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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