Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.此内容没有您所选择的语言版本。
Chapter 42. EventAdmin
EventAdmin component 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Available in Camel 2.6
The
eventadmin
component can be used in an OSGi environment to receive OSGi EventAdmin events and process them.
Dependencies 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Maven users need to add the following dependency to their
pom.xml
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-eventadmin</artifactId> <version>${camel-version}</version> </dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-eventadmin</artifactId>
<version>${camel-version}</version>
</dependency>
where
${camel-version}
must be replaced by the actual version of Camel (2.6.0 or higher).
URI format 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
eventadmin:topic[?options]
eventadmin:topic[?options]
where
topic
is the name of the topic to listen too.
URI options 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Name | Default value | Description |
---|---|---|
send
|
false
|
Whether to use 'send' or 'synchronous' deliver. Default false (async delivery) |
Message headers 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Name | Type | Message | Description |
---|
Message body 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
The
in
message body will be set to the received Event.
Example usage 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
<route> <from uri="eventadmin:*"/> <to uri="stream:out"/> </route>
<route>
<from uri="eventadmin:*"/>
<to uri="stream:out"/>
</route>