/** * The ClientFailoverSemanticsPolicy provides a means for application developers * to explicitly control how and if failover occurs. This Policy will be effective * in the context of any object reference. * * The four values of this Policy modify the client ORB behaviour as follws: * */ enum ClientFailoverSemanticsPolicyValue { ORB_DEFAULT, BEST_EFFORT, AT_LEAST_ONCE, AT_MOST_ONCE }; local interface ClientFailoverSemanticsPolicy : CORBA::Policy { readonly attribute ClientFailoverSemanticsPolicyValue value; };