Click or drag to resize
GDServiceSendingFinishedHandler Delegate
This callback is invoked whenever the delivery of a service response/request via the BlackBerry Inter-Container Communication (ICC) system completes.

Namespace:  GD
Assembly:  GD (in GD.dll) Version: 255.255.255.255
Syntax
public delegate void GDServiceSendingFinishedHandler(
	string targetApp,
	IList<IGDStorageFile> attachments,
	IDictionary<string, string> params,
	string requestId
)

Parameters

targetApp
Type: SystemString
BlackBerry Dynamics Entitlement identifier of the application to which the service response/request was sent.
attachments
Type: System.Collections.GenericIListIGDStorageFile
Any files that were attached to the service response/request.
params
Type: System.Collections.GenericIDictionaryString, String
Parameters key-value map of the service response/request.
requestId
Type: SystemString
The unique ID of the service request/response to which the sending has completed.
Remarks

Invocation of this callback notifies the application that:

  • Any files that were attached to the service response/request have been copied and become available to the service consumer/provider.
  • An independent copy of the parameters of the response, if any, has been made available to the service consumer.

The function that is invoked can delete or modify any of the original file attachments, and free any resources used to hold the response/request parameters.

See Also

Reference