new Stock("GOOG", 435.43),
new Stock("YHOO", 27.88),
new Stock("SPRG", 1015.55), };
for (Stock s : stocks) {
Channel ch = b.getChannel("/stock/"+s.getSymbol(), true);
ch.subscribe(c);
}
Random r = new Random(System.currentTimeMillis());
while (run) {
for (int j = 0; j < 1; j++) {