File: BlockingValueCallback.java

package info (click to toggle)
libglazedlists-java 1.9.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 3,012 kB
  • sloc: java: 22,561; xml: 940; makefile: 5
file content (52 lines) | stat: -rw-r--r-- 1,517 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Glazed Lists                                                 (c) 2003-2006 */
/* http://publicobject.com/glazedlists/                      publicobject.com,*/
/*                                                     O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.impl.pmap;

// NIO is used for CTP
import ca.odell.glazedlists.impl.io.Bufferlo;

/**
 * A ValueCallback that simply blocks until the value is ready.
 *
 * @author <a href="mailto:jesse@swank.ca">Jesse Wilson</a>
 */
class BlockingValueCallback implements ValueCallback {
    
    /** the value returned */
    private Bufferlo value = null;
    
    /**
     * Gets the value for the specified Chunk.
     */
    public static Bufferlo get(Chunk member) {
        // queue the get
        BlockingValueCallback callback = new BlockingValueCallback();
        member.fetchValue(callback);
        
        // wait till its ready
        synchronized(callback) {
            if(callback.value == null) {
                try {
                    callback.wait();
                } catch(InterruptedException e) {
                    throw new RuntimeException(e);
                }
            }
        }
        
        // return the result
        return callback.value;
    }
    
    /**
     * Handles a value being completely loaded into memory and ready to read.
     */
    public void valueLoaded(Chunk member, Bufferlo value) {
         synchronized(this) {
             this.value = value;
             notify();
         }
    }
}