comparison src/org/dancres/blitz/notify/Registrar.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 import org.dancres.blitz.lease.SpaceUID;
4
5 /**
6 Once EventQueue has performed a registration, it forwards the appropriate
7 details to a Registrar instance which can then do any further processing
8 required before passing the results on to the ultimate recipient.
9 */
10 public interface Registrar {
11 public void newRegistration(long aSourceId, long aSeqNum,
12 SpaceUID aUID);
13 }