You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/11/08 08:39:52 UTC

[camel] 10/11: Camel-NSQ: Cleanup the copied docs

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e46bf2dd8308ddf1be7064e50c87041d14283be3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 8 09:34:05 2018 +0100

    Camel-NSQ: Cleanup the copied docs
---
 .../camel-nsq/src/main/docs/nsq-component.adoc     | 40 ----------------------
 1 file changed, 40 deletions(-)

diff --git a/components/camel-nsq/src/main/docs/nsq-component.adoc b/components/camel-nsq/src/main/docs/nsq-component.adoc
index d4ff4eb..85fab09 100644
--- a/components/camel-nsq/src/main/docs/nsq-component.adoc
+++ b/components/camel-nsq/src/main/docs/nsq-component.adoc
@@ -108,43 +108,3 @@ The component supports 3 options, which are listed below.
 |===
 // spring-boot-auto-configure options: END
 
-
-
-
-
-### Headers
-
-[width="100%",cols="10%,10%,80%",options="header",]
-|=======================================================================
-|Name |Type |Description
-
-|CamelNatsMessageTimestamp |long |The timestamp of a consumed message.
-|=======================================================================
- 
-*Producer example:*
-
-[source,java]
------------------------------------------------------------
-from("direct:send").to("nats://localhost:4222?topic=test");
------------------------------------------------------------
-
-In case of using Authorization you can directly specify your credentials in the server URL
-
-[source,java]
------------------------------------------------------------
-from("direct:send").to("nats://username:password@localhost:4222?topic=test");
------------------------------------------------------------
-
-or your token
-
-[source,java]
------------------------------------------------------------
-from("direct:send").to("nats://token@localhost:4222?topic=test");
------------------------------------------------------------
-
-*Consumer example:*
-
-[source,java]
-----------------------------------------------------------------------------------------
-from("nats://localhost:4222?topic=test&maxMessages=5&queueName=test").to("mock:result");
-----------------------------------------------------------------------------------------