Examples of ThreadEventNotifierImpl


Examples of org.apache.hivemind.service.impl.ThreadEventNotifierImpl

    }

    public void testAdd()
    {
        ThreadEventNotifier n = new ThreadEventNotifierImpl();
        Listener l = new Listener();

        n.addThreadCleanupListener(l);
        n.fireThreadCleanup();

        assertEquals(true, l._cleanup);
    }
View Full Code Here

Examples of org.apache.hivemind.service.impl.ThreadEventNotifierImpl

        assertEquals(true, l._cleanup);
    }

    public void testRemove()
    {
        ThreadEventNotifier n = new ThreadEventNotifierImpl();

        Listener l1 = new Listener();
        Listener l2 = new Listener();

        n.addThreadCleanupListener(l1);
        n.addThreadCleanupListener(l2);
        n.removeThreadCleanupListener(l1);

        n.fireThreadCleanup();

        assertEquals(false, l1._cleanup);
        assertEquals(true, l2._cleanup);
    }
View Full Code Here

Examples of org.apache.hivemind.service.impl.ThreadEventNotifierImpl

        assertEquals(true, l2._cleanup);
    }

    public void testNotifierClearsListenerListAfterFire()
    {
        ThreadEventNotifier n = new ThreadEventNotifierImpl();

        Listener l = new Listener();

        n.addThreadCleanupListener(l);

        n.fireThreadCleanup();

        assertEquals(true, l._cleanup);

        l._cleanup = false;

        n.fireThreadCleanup();

        // Don't expect a notification, because the notifier's list is gone

        assertEquals(false, l._cleanup);
    }
View Full Code Here

Examples of org.apache.hivemind.service.impl.ThreadEventNotifierImpl

            {
                throw re;
            }
        };

        ThreadEventNotifier n = new ThreadEventNotifierImpl(log);

        n.addThreadCleanupListener(l);

        n.fireThreadCleanup();

        verifyControls();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.