Uses of Interface
org.apache.vinci.transport.TransportableFactory

Packages that use TransportableFactory
org.apache.uima.adapter.vinci   
org.apache.uima.collection.impl.cpm.container.deployer.vns   
org.apache.uima.collection.impl.cpm.vinci   
org.apache.vinci.transport   
org.apache.vinci.transport.context   
org.apache.vinci.transport.document   
org.apache.vinci.transport.util   
org.apache.vinci.transport.vns.client   
org.apache.vinci.transport.vns.service   
 

Uses of TransportableFactory in org.apache.uima.adapter.vinci
 

Classes in org.apache.uima.adapter.vinci that implement TransportableFactory
 class VinciAnalysisEngineService_impl
          Main class for a Vinci Analysis Engine service.
 class VinciBinaryAnalysisEngineService_impl
          Main class for a Vinci Analysis Engine service that uses the binary CAS serialization, rather than XCAS.
 

Uses of TransportableFactory in org.apache.uima.collection.impl.cpm.container.deployer.vns
 

Classes in org.apache.uima.collection.impl.cpm.container.deployer.vns that implement TransportableFactory
 class LocalVNS
          LOCAL Vinci Naming Service.
 

Uses of TransportableFactory in org.apache.uima.collection.impl.cpm.vinci
 

Classes in org.apache.uima.collection.impl.cpm.vinci that implement TransportableFactory
static class Vinci.AFFactory
           
 

Uses of TransportableFactory in org.apache.vinci.transport
 

Subinterfaces of TransportableFactory in org.apache.vinci.transport
 interface VinciServable
          Interface for implementing Vinci Services.
 

Classes in org.apache.vinci.transport that implement TransportableFactory
 class VinciServableAdapter
          Adapter class for VinciServable, which provides a do-nothing cleanExit() method and a TransportableFactory that returns a VinciFrame.
 

Methods in org.apache.vinci.transport that return TransportableFactory
static TransportableFactory VinciFrame.getVinciFrameFactory()
          Get a TransportableFactory that creates new VinciFrames.
 

Methods in org.apache.vinci.transport with parameters of type TransportableFactory
static Transportable BaseClient.sendAndReceive(Transportable in, java.lang.String host_name, int p, TransportableFactory f)
          Convenience method for "one-shot" or "single-query" connections.
static Transportable BaseClient.sendAndReceive(Transportable in, java.lang.String host_name, int p, TransportableFactory f, int socket_timeout)
          Convenience method for "one-shot" or "single-query" connections with socket timeout support.
static Transportable BaseClient.sendAndReceive(Transportable in, java.lang.String host_name, int p, TransportableFactory f, int socket_timeout, int connect_timeout)
          Convenience method for "one-shot" or "single-query" connections with socket timeout support & connect timeout support.
static Transportable VinciClient.sendAndReceive(Transportable in, java.lang.String service_name, TransportableFactory factory)
          Convenience method for "one-shot"/single-query connections.
static Transportable VinciClient.sendAndReceive(Transportable in, java.lang.String service_name, TransportableFactory factory, int socket_timeout)
          Convenience method for "one-shot"/single-query connections.
static Transportable VinciClient.sendAndReceive(Transportable in, java.lang.String service_name, TransportableFactory factory, int socket_timeout, int connect_timeout)
          Convenience method for "one-shot"/single-query connections.
 Transportable PooledVinciClient.sendAndReceive(Transportable in, TransportableFactory f)
          Send a request to the service and receive the response, using the provided transportable factory in place of the client-provided one.
 Transportable BaseClient.sendAndReceive(Transportable in, TransportableFactory f)
          Same as sendAndReceive(Transportable) except the provided factory is used to create the return document in place of the default factory.
 Transportable PooledVinciClient.sendAndReceive(Transportable in, TransportableFactory f, int socketTimeout)
          Send a request to the service and receive the response, using the provided transportable factory and socketTimeout in place of the client-provided ones.
 Transportable BaseClient.sendAndReceive(Transportable in, TransportableFactory f, int timeout)
          Same as sendAndReceive(Transportable, timeout) except the provided factory is used to create the return document in place of the default factory.
protected  Transportable BaseClient.sendAndReceiveWork(Transportable in, TransportableFactory f)
           
protected  Transportable BaseClient.sendAndReceiveWork(Transportable in, TransportableFactory f, int timeout)
           
 void PooledVinciClient.setTransportableFactory(TransportableFactory factory)
          Set a transportable factory that will be used in place of the VinciFrame factory.
 void BaseClient.setTransportableFactory(TransportableFactory f)
          Set the transportable factory used by this client.
 

Constructors in org.apache.vinci.transport with parameters of type TransportableFactory
BaseClient(java.lang.String h, int p, TransportableFactory f)
          Open up the service at the specified host and port.
BaseClient(java.lang.String h, int p, TransportableFactory f, int timeout)
          Open up the service at the specified host and port, using the specified connect timeout.
BaseClient(TransportableFactory f)
          Create a base client without establishing a connection.
BaseClient(TransportableFactory f, int timeout)
          Create a base client without establishing a connection.
VinciClient(java.lang.String service_name, TransportableFactory factory)
          Constructs a new client connected to the requested service.
VinciClient(java.lang.String service_name, TransportableFactory factory, int connectTimeout)
          Constructs a new client connected to the requested service.
VinciClient(java.lang.String service_name, TransportableFactory factory, VinciContext myContext)
           
VinciClient(java.lang.String service_name, TransportableFactory factory, VinciContext myContext, int connectTimeout)
          Constructs a new client connected to the requested service.
VinciClient(TransportableFactory f)
          Construct a new client WITHOUT opening a connection, using the specified factory to create return documents.
 

Uses of TransportableFactory in org.apache.vinci.transport.context
 

Methods in org.apache.vinci.transport.context with parameters of type TransportableFactory
 Transportable VinciContext.sendAndReceive(Transportable in, java.lang.String service_name, TransportableFactory factory)
          See documentation for VinciClient.sendAndReceive().
 Transportable VinciContext.sendAndReceive(Transportable in, java.lang.String service_name, TransportableFactory factory, int socket_timeout)
          See documentation for VinciClient.sendAndReceive().
 Transportable VinciContext.sendAndReceive(Transportable in, java.lang.String service_name, TransportableFactory factory, int socket_timeout, int connect_timeout)
          See documentation for VinciClient.sendAndReceive().
 

Uses of TransportableFactory in org.apache.vinci.transport.document
 

Methods in org.apache.vinci.transport.document that return TransportableFactory
static TransportableFactory AFrame.getAFrameFactory()
          Get a TransportableFactory that creates new AFrames.
 

Uses of TransportableFactory in org.apache.vinci.transport.util
 

Methods in org.apache.vinci.transport.util with parameters of type TransportableFactory
static Transportable TransportableConverter.convert(Transportable convert_me, TransportableFactory factory)
          Convert a transportable to the type of transportable returned by a factory.
 

Uses of TransportableFactory in org.apache.vinci.transport.vns.client
 

Fields in org.apache.vinci.transport.vns.client declared as TransportableFactory
static TransportableFactory ServeonResult.factory
           
static TransportableFactory ResolveResult.factory
           
 

Uses of TransportableFactory in org.apache.vinci.transport.vns.service
 

Classes in org.apache.vinci.transport.vns.service that implement TransportableFactory
 class VNS
          VNS (Vinci Naming Service) provides the "directory" of all available Vinci services.
 



Copyright © 2012. All Rights Reserved.