ProviderSessionResolve Method (ResolutionList, ResolveMode, Identity) |
Resolves the topics in the specified 'resolutionList' and updates the
'resolutionList' with the results of the resolution process.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.15.0.1
Syntax public void Resolve(
ResolutionList resolutionList,
ResolveMode resolveMode,
Identity providerIdentity
)
Public Sub Resolve (
resolutionList As ResolutionList,
resolveMode As ResolveMode,
providerIdentity As Identity
)
public:
void Resolve(
ResolutionList^ resolutionList,
ResolveMode resolveMode,
Identity^ providerIdentity
)
member Resolve :
resolutionList : ResolutionList *
resolveMode : ResolveMode *
providerIdentity : Identity -> unit
Parameters
- resolutionList
- Type: Bloomberglp.BlpapiResolutionList
- resolveMode
- Type: Bloomberglp.BlpapiResolveMode
- providerIdentity
- Type: Bloomberglp.BlpapiIdentity
Exceptions Remarks If the specified 'resolveMode' is DONT_REGISTER_SERVICES (the default) then all
the services referenced in the topics in the 'resolutionList' must
already have been registered using registerService(). If 'resolveMode' is
AUTO_REGISTER_SERVICES then the specified 'providerIdentity' should be
supplied and ProviderSession will automatically attempt to register any
services reference in the topics in the 'resolutionList' that have not
already been registered. Once resolveSync() returns each entry in the
'resolutionList' will have been updated with a new status.
Before resolve() returns one or more RESOLUTION_STATUS events and, if
'resolveMode' is AUTO_REGISTER_SERVICES, zero or more SERVICE_STATUS
events are generated. If this is an asynchronous ProviderSession then
these Events may be processed by the registered EventHandler before
resolve() has returned.
See Also