So, basically, if I were to follow my peopleList example in my original email, I would create a shared object by calling:
ISharedObject peopleList = getSharedObject(scope, "peopleList");
peopleList.addSharedObjectListener (new PeopleListSharedObjectListener())
and then create a PeopleListSharedObjectListener.java file as mentioned in the Migration Guide that basically looks like:
import org.red5.server.api.so.ISharedObject;
import org.red5.server.api.so.ISharedObjectListener;
public class PeopleListObjectListener implements ISharedObjectListener {
}
but inside that class would be the three methods that you included as well as any other methods I may have had in my peopleList.asc file?
I just want to be clear... I have a few of these files to create... :-)
Leif
_______________________________________________ Red5 mailing list [email protected] http://osflash.org/mailman/listinfo/red5_osflash.org
