You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2020/09/09 14:14:55 UTC

[camel] branch uuid-generator updated (2c9b5b2 -> fede74d)

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

bvahdat pushed a change to branch uuid-generator
in repository https://gitbox.apache.org/repos/asf/camel.git.


 discard 2c9b5b2  correct typo
 discard 6cbe0ee  correct typo
 discard d30d183  add missing documentation about SimpleUuidGenerator
     new fede74d  add missing documentation about SimpleUuidGenerator

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (2c9b5b2)
            \
             N -- N -- N   refs/heads/uuid-generator (fede74d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[camel] 01/01: add missing documentation about SimpleUuidGenerator

Posted by bv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bvahdat pushed a commit to branch uuid-generator
in repository https://gitbox.apache.org/repos/asf/camel.git

commit fede74db67a12f6b771878100a4470989b5cf98e
Author: Babak Vahdat <bv...@apache.org>
AuthorDate: Wed Sep 9 15:52:07 2020 +0200

    add missing documentation about SimpleUuidGenerator
---
 docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc b/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
index 43ef7ae..68cfb0d 100644
--- a/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
+++ b/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
@@ -46,11 +46,15 @@ bean registry to find the bean of the type
 [[UuidGenerator-Providedimplementations]]
 == Provided implementations
 
-Camel comes with two implementations of
+Camel comes with three implementations of
 `org.apache.camel.spi.UuidGenerator`:
 
-* `org.apache.camel.support.SimpleUuidGenerator` - This implementation use
-internally a `java.util.concurrent.atomic.AtomicLong` and increase the
+* `org.apache.camel.support.SimpleUuidGenerator` - This implementation uses
+internally a `java.util.concurrent.atomic.AtomicLong` and increases the
 ID for every call by one. Starting with 1 as the first id.
+* `org.apache.camel.support.VanillaUuidGenerator` - This implementation uses
+a random generated seed and a counter which increments by one. This generator
+is not unique per host or JVM.
 * `org.apache.camel.impl.engine.DefaultUuidGenerator` - This implementation
-use a fast unique UUID generation that is cluster safe (similar to uuid generator in ActiveMQ)
+uses a fast unique UUID generation that is cluster safe (similar to uuid
+generator in ActiveMQ). This is the default implementation in use by Camel.