1 Reply Latest reply on Aug 23, 2002 3:20 PM by davidjencks

    is there a shutdown hook?

    glenc

      Is there any way to have JBoss call a custom method that
      performs some adapter-specific shutdown processing?

        • 1. Re: BaseConnectionManager2.managedConnectionToListenerMap
          davidjencks

          I tweaked a little with the source from BaseConnectionManager2 and instead of using the whole object as the key, I put it into the map with the toString() method.

          i.e. instead of

          hash.put(o1, o2);

          i use

          hash.put(o1.toString(), o2)

          this is not a solution but the lookup is succeeding now. However, this only exposes other areas in the code which fall victim to the same failing hashmap lookup.

          -d