{
ByteBufferPool p = new ByteBufferPool( 1024, 1, 1, 0, 0 );
MyNotify n1 = new MyNotify();
MyNotify n2 = new MyNotify();
ByteBuffer b1 = p.alloc( n1 );
assertNotNull( b1 );
assertEquals( 1, p.used() );
Thread.sleep( 15 );
assertFalse( n1.available );
assertFalse( n2.available );