static void strongTouchProtocol(String tablename, String key, boolean fData) throws Exception
{
Map<EndPoint, EndPoint> endpointMap = StorageService.instance().getNStorageEndPointMap(key);
Set<EndPoint> endpoints = endpointMap.keySet();
TouchMessage touchMessage = null;
touchMessage = new TouchMessage(tablename, key, fData);
Message message = TouchMessage.makeTouchMessage(touchMessage);
for(EndPoint endpoint : endpoints)
{
MessagingService.getMessagingInstance().sendOneWay(message, endpoint);
}