Repository: camel Updated Branches: refs/heads/camel-2.20.x f87de945c -> cbb3a41a0 refs/heads/master ac9796a20 -> 5d73bf5ed
Delete outdated readme as there is component docs already Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/5d73bf5e Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/5d73bf5e Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/5d73bf5e Branch: refs/heads/master Commit: 5d73bf5ed673c824c7576d39aad6bd2df90fce19 Parents: ac9796a Author: Claus Ibsen <[email protected]> Authored: Wed Oct 18 11:03:35 2017 +0200 Committer: Claus Ibsen <[email protected]> Committed: Wed Oct 18 11:03:35 2017 +0200 ---------------------------------------------------------------------- components/camel-pgevent/README.md | 51 --------------------------------- 1 file changed, 51 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/5d73bf5e/components/camel-pgevent/README.md ---------------------------------------------------------------------- diff --git a/components/camel-pgevent/README.md b/components/camel-pgevent/README.md deleted file mode 100644 index 6cc3e3e..0000000 --- a/components/camel-pgevent/README.md +++ /dev/null @@ -1,51 +0,0 @@ -PgEvent Component -================= - -This is a component for [Apache Camel](http://camel.apache.org/) which allows -for Producing/Consuming PostgreSQL events related to the LISTEN/NOTIFY commands -added since PostgreSQL 8.3. - -## Usage (Not yet working) - -You can configure this component via URI parameters like most other Camel -components. The possible parameters are listed below: - - String host = "localhost"; - - Integer port = 5432; - - String database; - - String channel; - - String user = "postgres"; - - String pass; - - DataSource datasource; - -If you use the pgDataSource parameter, all other *connection* parameters are -ignored. The *channel* parameter, however, is always required. - -## URI Format - - pgevent:[datasource] || [//host:port]/<database>/<channel>[?parameters] - - pgevent:myDataSource/proddb/userupdates - - pgevent://192.168.1.12:5432/proddb/groupupdates?user=username&pass=secret - - pgevent://192.168.1.12/proddb/groupupdates?user=username&pass=secret - - pgevent:///proddb/customerupdates ## Uses all defaults - - -## Building And Installing - -To build this project use - - mvn install - -For more help see the Apache Camel documentation: - - http://camel.apache.org/writing-components.html
