public static interface ThriftEndpointBuilderFactory.ThriftBuilders
| Modifier and Type | Method and Description |
|---|---|
default ThriftEndpointBuilderFactory.ThriftEndpointBuilder |
thrift(String path)
Thrift (camel-thrift)
Call and expose remote procedures (RPC) with Apache Thrift data
format and serialization mechanism.
|
default ThriftEndpointBuilderFactory.ThriftEndpointBuilder |
thrift(String componentName,
String path)
Thrift (camel-thrift)
Call and expose remote procedures (RPC) with Apache Thrift data
format and serialization mechanism.
|
default ThriftEndpointBuilderFactory.ThriftEndpointBuilder thrift(String path)
thrift:host:port/service
Path parameter: host
The Thrift server host name. This is localhost or 0.0.0.0 (if not
defined) when being a consumer or remote server host name when using
producer.
Path parameter: port (required)
The Thrift server port
Path parameter: service (required)
Fully qualified service name from the thrift descriptor file (package
dot service definition name)path - host:port/servicedefault ThriftEndpointBuilderFactory.ThriftEndpointBuilder thrift(String componentName, String path)
thrift:host:port/service
Path parameter: host
The Thrift server host name. This is localhost or 0.0.0.0 (if not
defined) when being a consumer or remote server host name when using
producer.
Path parameter: port (required)
The Thrift server port
Path parameter: service (required)
Fully qualified service name from the thrift descriptor file (package
dot service definition name)componentName - to use a custom component name for the endpoint
instead of the default namepath - host:port/serviceApache Camel