comparison src/org/dancres/blitz/notify/NonblockingDispatchImpl.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.notify;
2
3 class NonblockingDispatchImpl implements DispatchTask {
4 private EventQueue theQueue;
5 private QueueEvent theEvent;
6
7 NonblockingDispatchImpl(EventQueue aQueue, QueueEvent anEvent) {
8 theQueue = aQueue;
9 theEvent = anEvent;
10 }
11
12 public void run() {
13 theQueue.dispatchImpl(this);
14 }
15
16 public QueueEvent getEvent() {
17 return theEvent;
18 }
19
20 public void block() throws InterruptedException {
21 }
22
23 public void newDispatch() {
24 }
25
26 public void dispatched() {
27 }
28
29 public void enableResolve() {
30 }
31 }