Uses of Class
org.apache.vinci.transport.context.VinciContext
-
Packages that use VinciContext Package Description org.apache.vinci.transport org.apache.vinci.transport.context -
-
Uses of VinciContext in org.apache.vinci.transport
Fields in org.apache.vinci.transport declared as VinciContext Modifier and Type Field Description private VinciContext
PooledVinciClient. context
private VinciContext
VinciClient. context
private VinciContext
VinciServer. context
Methods in org.apache.vinci.transport that return VinciContext Modifier and Type Method Description VinciContext
VinciClient. getContext()
Get the context associated with this client.VinciContext
VinciServer. getContext()
Get the context associated with this server.Methods in org.apache.vinci.transport with parameters of type VinciContext Modifier and Type Method Description void
PooledVinciClient. setContext(VinciContext context)
Set a VinciContext that will be used by this PooledVinciClient instead of the default global context.void
VinciClient. setContext(VinciContext c)
Set the VinciContext to be used by this client.void
VinciServer. setContext(VinciContext c)
Set the VinciContext to be used by this server.Constructors in org.apache.vinci.transport with parameters of type VinciContext Constructor Description VinciClient(java.lang.String service_name, VinciContext myContext)
VinciClient(java.lang.String service_name, VinciContext myContext, 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. -
Uses of VinciContext in org.apache.vinci.transport.context
Fields in org.apache.vinci.transport.context declared as VinciContext Modifier and Type Field Description private static VinciContext
VinciContext. globalContext
Methods in org.apache.vinci.transport.context that return VinciContext Modifier and Type Method Description static VinciContext
VinciContext. getGlobalContext()
Get the global VinciContext used by Vinci classes when no context is explicitly specified.
-