Instance methods operate on a user supplied uniform random number generator; they are unsynchronized.
@author wolfgang.hoschek@cern.ch @version 1.0, 09/24/99
496497498499500501502503504505506
* context is available. * * @return The next Restlet or null. */ public Uniform getNext() { Uniform result = this.next; if (result == null) { synchronized (this) { if (result == null) { result = createNext();
697698699700701702703704705706707
* @return The response created. * @see #getNext() */ public Response handle(Request request) { Response response = createResponse(request); Uniform next = getNext(); if (next != null) { // Effectively handle the call handle(request, response, null, 0, next);