/** Multi-casts the deltes to the distributed servers. */
public void multicast()
{
ThreadPoolManager tpm = ThreadPoolManager.getInstance();
Iterator it = servers.iterator();
//p( "iterating through servers" );
while ( it.hasNext() )
{
String url = ( String ) it.next() + servlet;
//p( "url = " + url );
tpm.runIt( new DeleteLateralCacheUnicaster( hashtableName, key, url ) );
}
return;
}