Hi All,
while I was working on GF 2. I noticed something strange, but it must have been noted before...
I have a CometContext in a singleton, If i set the timeout to -1 it never detects dissconnects. so I have set it to 30 Mins and it works as advertisd :). is this a known Bug?
----------------------------------------------------------------------
static CometContext cc;
public void addHandler(CometHandler ch){
cc.setExpirationDelay(60000 * 30);
cc.addCometHandler(ch);
}