--- apiVersion: v1 kind: List items: - apiVersion: v1 kind: ConfigMap metadata: labels: funktion.fabric8.io/kind: Connector provider: fabric8 project: connector-stomp version: 1.1.23 group: io.fabric8.funktion.connector name: stomp data: deployment.yml: | --- apiVersion: extensions/v1beta1 kind: Deployment metadata: labels: funktion.fabric8.io/kind: Subscription connector: stomp spec: replicas: 1 template: metadata: labels: funktion.fabric8.io/kind: Subscription connector: stomp spec: containers: - image: fabric8/connector-stomp:1.1.23 name: connector schema.yml: | --- component: kind: component scheme: stomp syntax: stomp:destination title: Stomp description: The stomp component is used for communicating with Stomp compliant message brokers. label: messaging deprecated: false async: true javaType: org.apache.camel.component.stomp.StompComponent groupId: org.apache.camel artifactId: camel-stomp version: 2.18.1 componentProperties: configuration: kind: property type: object javaType: org.apache.camel.component.stomp.StompConfiguration deprecated: false secret: false description: To use the shared stomp configuration brokerURL: kind: property type: string javaType: java.lang.String deprecated: false secret: false description: The URI of the Stomp broker to connect to login: kind: property label: security required: false type: string javaType: java.lang.String deprecated: false secret: true description: The username passcode: kind: property label: security required: false type: string javaType: java.lang.String deprecated: false secret: true description: The password host: kind: property type: string javaType: java.lang.String deprecated: false secret: false description: The virtual host properties: destination: kind: path group: common required: true type: string javaType: java.lang.String deprecated: false secret: false description: Name of the queue brokerURL: kind: parameter group: common required: true type: string javaType: java.lang.String deprecated: false secret: false defaultValue: tcp://localhost:61613 description: The URI of the Stomp broker to connect to host: kind: parameter group: common type: string javaType: java.lang.String deprecated: false secret: false description: The virtual host name bridgeErrorHandler: kind: parameter group: consumer label: consumer type: boolean javaType: boolean optionalPrefix: consumer. deprecated: false secret: false defaultValue: false description: Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN/ERROR level and ignored. exceptionHandler: kind: parameter group: consumer (advanced) label: consumer,advanced type: object javaType: org.apache.camel.spi.ExceptionHandler optionalPrefix: consumer. deprecated: false secret: false description: To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this options is not in use. By default the consumer will deal with exceptions that will be logged at WARN/ERROR level and ignored. exchangePattern: kind: parameter group: consumer (advanced) label: consumer,advanced type: string javaType: org.apache.camel.ExchangePattern enum: - InOnly - RobustInOnly - InOut - InOptionalOut - OutOnly - RobustOutOnly - OutIn - OutOptionalIn deprecated: false secret: false description: Sets the exchange pattern when the consumer creates an exchange. synchronous: kind: parameter group: advanced label: advanced type: boolean javaType: boolean deprecated: false secret: false defaultValue: false description: Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported). login: kind: parameter group: security label: security type: string javaType: java.lang.String deprecated: false secret: true description: The username passcode: kind: parameter group: security label: security type: string javaType: java.lang.String deprecated: false secret: true description: The password sslContextParameters: kind: parameter group: security label: security type: object javaType: org.apache.camel.util.jsse.SSLContextParameters deprecated: false secret: false description: To configure security using SSLContextParameters documentation.adoc: |+ [[Stomp-StompComponent]] Stomp Component ~~~~~~~~~~~~~~~ *Available as of Camel 2.12* The *stomp:* component is used for communicating with http://stomp.github.io/[Stomp] compliant message brokers, like http://activemq.apache.org[Apache ActiveMQ] or http://activemq.apache.org/apollo/[ActiveMQ Apollo] Maven users will need to add the following dependency to their `pom.xml` for this component: [source,xml] ------------------------------------------------------------ org.apache.camel camel-stomp x.x.x ------------------------------------------------------------ [[Stomp-URIformat]] URI format ^^^^^^^^^^ [source,java] --------------------------------- stomp:queue:destination[?options] --------------------------------- Where *destination* is the name of the queue. [[Stomp-Options]] Options ^^^^^^^ // component options: START The Stomp component supports 5 options which are listed below. {% raw %} [width="100%",cols="2,1m,7",options="header"] |======================================================================= | Name | Java Type | Description | configuration | StompConfiguration | To use the shared stomp configuration | brokerURL | String | The URI of the Stomp broker to connect to | login | String | The username | passcode | String | The password | host | String | The virtual host |======================================================================= {% endraw %} // component options: END // endpoint options: START The Stomp component supports 10 endpoint options which are listed below: {% raw %} [width="100%",cols="2,1,1m,1m,5",options="header"] |======================================================================= | Name | Group | Default | Java Type | Description | destination | common | | String | *Required* Name of the queue | brokerURL | common | tcp://localhost:61613 | String | *Required* The URI of the Stomp broker to connect to | host | common | | String | The virtual host name | bridgeErrorHandler | consumer | false | boolean | Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN/ERROR level and ignored. | exceptionHandler | consumer (advanced) | | ExceptionHandler | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this options is not in use. By default the consumer will deal with exceptions that will be logged at WARN/ERROR level and ignored. | exchangePattern | consumer (advanced) | | ExchangePattern | Sets the exchange pattern when the consumer creates an exchange. | synchronous | advanced | false | boolean | Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported). | login | security | | String | The username | passcode | security | | String | The password | sslContextParameters | security | | SSLContextParameters | To configure security using SSLContextParameters |======================================================================= {% endraw %} // endpoint options: END You can append query options to the URI in the following format, `?option=value&option=value&...` [[Stomp-Samples]] Samples ^^^^^^^ Sending messages: [source,java] ------------------------------------------ from("direct:foo").to("stomp:queue:test"); ------------------------------------------ Consuming messages: [source,java] ------------------------------------------------------------------------------ from("stomp:queue:test").transform(body().convertToString()).to("mock:result") ------------------------------------------------------------------------------ [[Stomp-Endpoints]] Endpoints ~~~~~~~~~ Camel supports the link:message-endpoint.html[Message Endpoint] pattern using the http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Endpoint.html[Endpoint] interface. Endpoints are usually created by a link:component.html[Component] and Endpoints are usually referred to in the link:dsl.html[DSL] via their link:uris.html[URIs]. From an Endpoint you can use the following methods * http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Endpoint.html#createProducer()[createProducer()] will create a http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Producer.html[Producer] for sending message exchanges to the endpoint * http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Endpoint.html#createConsumer(org.apache.camel.Processor)[createConsumer()] implements the link:event-driven-consumer.html[Event Driven Consumer] pattern for consuming message exchanges from the endpoint via a http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Processor.html[Processor] when creating a http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Consumer.html[Consumer] * http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Endpoint.html#createPollingConsumer()[createPollingConsumer()] implements the link:polling-consumer.html[Polling Consumer] pattern for consuming message exchanges from the endpoint via a http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html[PollingConsumer] [[Stomp-SeeAlso]] See Also ^^^^^^^^ * link:configuring-camel.html[Configuring Camel] * link:message-endpoint.html[Message Endpoint] pattern * link:uris.html[URIs] * link:writing-components.html[Writing Components]