That's the mechanism currently used to flag whether a component is to be treated as a singleton. Why wouldn't it be possible?

The problem is, that i need to have exclusive access on object (component) level.
Using the Threadsafe interface will cause the need of java synchronization:

synchronized (myComponent) {
    myComponent.doSomething1();
    myComponent.doSomething2();
}

This is in any case a bottleneck, but i intended to delegate this to the component manager. My component is not thread safe and it is not possible to make it thread safe.

Thx, Robert


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]