Interface PubNubEndpointBuilderFactory.PubNubEndpointProducerBuilder
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
PubNubEndpointBuilderFactory.PubNubEndpointBuilder
- Enclosing interface:
PubNubEndpointBuilderFactory
public static interface PubNubEndpointBuilderFactory.PubNubEndpointProducerBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint producers for the PubNub component.
-
Method Summary
Modifier and TypeMethodDescriptionadvanced()Deprecated.The operation to perform.publishKey(String publishKey) The publish key obtained from your PubNub account.The secret key used for message signing.secure(boolean secure) Use SSL for secure transmission.Use SSL for secure transmission.subscribeKey(String subscribeKey) The subscribe key obtained from your PubNub account.UUID to be used as a device identifier, a default UUID is generated if not passed.Methods inherited from interface org.apache.camel.builder.EndpointProducerBuilder
doSetMultiValueProperties, doSetMultiValueProperty, doSetProperty, expr, getRawUri, getUriMethods inherited from interface org.apache.camel.EndpointProducerResolver
resolve, resolve
-
Method Details
-
advanced
-
uuid
UUID to be used as a device identifier, a default UUID is generated if not passed. The option is a:java.lang.Stringtype. Required: true Group: common- Parameters:
uuid- the value to set- Returns:
- the dsl builder
-
operation
The operation to perform. PUBLISH: Default. Send a message to all subscribers of a channel. FIRE: allows the client to send a message to BLOCKS Event Handlers. These messages will go directly to any Event Handlers registered on the channel. HERENOW: Obtain information about the current state of a channel including a list of unique user-ids currently subscribed to the channel and the total occupancy count. GETSTATE: Used to get key/value pairs specific to a subscriber uuid. State information is supplied as a JSON object of key/value pairs SETSTATE: Used to set key/value pairs specific to a subscriber uuid GETHISTORY: Fetches historical messages of a channel. The option is a:java.lang.Stringtype. Group: producer- Parameters:
operation- the value to set- Returns:
- the dsl builder
-
authKey
@Deprecated default PubNubEndpointBuilderFactory.PubNubEndpointProducerBuilder authKey(String authKey) Deprecated.If Access Manager is utilized, client will use this authKey in all restricted requests. Default value notice: This setting is deprecated because it relates to deprecated Access Manager (PAM V2) and will be removed in the future. Please, migrate to new Access Manager (PAM V3) https://www.pubnub.com/docs/general/resources/migration-guides/pam-v3-migration. The option is a:java.lang.Stringtype. Group: security- Parameters:
authKey- the value to set- Returns:
- the dsl builder
-
publishKey
The publish key obtained from your PubNub account. Required when publishing messages. The option is a:java.lang.Stringtype. Group: security- Parameters:
publishKey- the value to set- Returns:
- the dsl builder
-
secretKey
The secret key used for message signing. The option is a:java.lang.Stringtype. Group: security- Parameters:
secretKey- the value to set- Returns:
- the dsl builder
-
secure
Use SSL for secure transmission. The option is a:booleantype. Default: true Group: security- Parameters:
secure- the value to set- Returns:
- the dsl builder
-
secure
Use SSL for secure transmission. The option will be converted to abooleantype. Default: true Group: security- Parameters:
secure- the value to set- Returns:
- the dsl builder
-
subscribeKey
default PubNubEndpointBuilderFactory.PubNubEndpointProducerBuilder subscribeKey(String subscribeKey) The subscribe key obtained from your PubNub account. Required when subscribing to channels or listening for presence events. The option is a:java.lang.Stringtype. Group: security- Parameters:
subscribeKey- the value to set- Returns:
- the dsl builder
-