1 package org.lsst.ccs.utilities.dispatch;
2
3 /**
4 * An <TT>Observable</TT> that needs parrallel processing of updates.
5 *
6 * @author bernard AMADE
7 */
8 public interface ASyncObserver<P> {
9 public void update(P protocol) ;
10 }