Re: Random controller not applied per thread

2002-12-19 Thread Bruno Dillenseger
There is no seed specified in 1.8 source code (see call to default Random's constructor in RandomController.java). According to Java documentation, this implies that the actual seed is System.currentTimeMillis(). So the seed should change each millisecond (although not all systems have the same tim

Re: Random controller not applied per thread

2002-12-19 Thread Manko, Gerard
: Gerard Manko/BSG/Pittsburgh/Fiserv) Subject: Re: Random controller not applied per thread Please see the attached document. This may be due to the the Random class works. I'd have to look it up, but each thread gets its own instance of RandomController, each of which creat

Re: Random controller not applied per thread

2002-12-18 Thread Mike Stover
This may be due to the the Random class works. I'd have to look it up, but each thread gets its own instance of RandomController, each of which creates an instance of Random on instantiation. However, if this all happens quickly, then each Random instance may be providing the same list of rand

Random controller not applied per thread

2002-12-18 Thread Scott Eade
RandomController extends InterleaveController. While it makes sense for Interleave controller to apply across all threads, I somehow expected that a Random controller would be applied on a per thread basis. To be more specific, here is the current behaviour: Random Controller Request 1 R