Effective October 27, 2012, online and email support for FuseSource products will move to Red Hat support channels. For more information, please see the JIRA Migration to Red Hat FAQ.
As of October 27th, please open all new issues in the Red Hat Customer Portal .
Issue Details (XML | Word | Printable)

Key: ESB-1442
Type: Improvement Improvement
Status: Resolved Resolved
Resolution: Resolved at Apache
Priority: Major Major
Assignee: Freeman Fang
Reporter: Dave Stanley
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
FUSE ESB

Optimize uuid generator in ExchangeImpl.java

Created: 13/Apr/11 07:37 PM   Updated: 16/May/11 02:00 PM
Component/s: Core
Affects Version/s: 4.3.1-fuse-01-09
Fix Version/s: 4.4.0-fuse-00-27

Environment: Fuse ESB 4.3.x

External Issue URL: https://issues.apache.org/jira/browse/SMX4NMR-270


 Description  « Hide
ExchangeImpl is using the standard uuid generator.
public ExchangeImpl(Pattern pattern) {
        this.id = UUID.randomUUID().toString();
        this.status = Status.Active;
        this.role = Role.Consumer;
        this.pattern = pattern;
    }

This is suboptimal, due to inherent locking/synchronization limitations with the default impl. This enhancement is to switch to a more optimized version.

Similar issue was discussed in CAMEL-3139.



 All   Comments   Change History      Sort Order: Ascending order - Click to sort in descending order
There are no comments yet on this issue.