return ReplicationUtil.isSynchronousReplicationConfigured();
}
public boolean isWaitForFastAckConfigured() {
if(_waitForFastAckConfigured == null) {
ServerConfigLookup lookup = new ServerConfigLookup();
boolean waitForFastAckProp = lookup.getWaitForFastAckPropertyFromConfig();
_waitForFastAckConfigured = new Boolean(waitForFastAckProp);
}
//System.out.println("isWaitForFastAckConfigured = " + _waitForFastAckConfigured.booleanValue());
return _waitForFastAckConfigured.booleanValue();
}