<AGSPortalInfoDelegate> Protocol Reference


Description

A protocol which must be adopted by a class wishing to serve as a delegate for AGSPortalInfo. AGSPortalInfo informs the delegate when operations complete successfully or encounter an error.

All of the methods of this protocol are optional.

Since:
2.2

List of all members.

Public Member Functions

(void) - portalInfo:operation:didFailToFetchOrganizationThumbnailWithError:
(void) - portalInfo:operation:didFailToFetchPortalThumbnailWithError:
(void) - portalInfo:operation:didFetchOrganizationThumbnail:
(void) - portalInfo:operation:didFetchPortalThumbnail:

Member Function Documentation

- (void) portalInfo: (AGSPortalInfo *)  portalInfo
operation: (NSOperation *)  op
didFailToFetchOrganizationThumbnailWithError: (NSError *)  error 
[optional]

Tells the delegate that the specified error was encountered while tyring to fetch the thumbnail image.

Parameters:
portalInfo The portal info on which the fetch was done.
op The operation that performed the fetch.
error Information about the cause of the failure.
Since:
2.2
- (void) portalInfo: (AGSPortalInfo *)  portalInfo
operation: (NSOperation *)  op
didFailToFetchPortalThumbnailWithError: (NSError *)  error 
[optional]

Tells the delegate that the specified error was encountered while tyring to fetch the thumbnail image.

Parameters:
portalInfo The portal info on which the fetch was done.
op The operation that performed the fetch.
error Information about the cause of the failure.
Since:
2.2
- (void) portalInfo: (AGSPortalInfo *)  portalInfo
operation: (NSOperation *)  op
didFetchOrganizationThumbnail: (UIImage *)  thumbnail 
[optional]

Tells the delegate that the fetch operation of the oraganization's thumbnail image completed successfully.

Parameters:
portalInfo The portal info on which the fetch was done.
op The operation that performed the fetch.
thumbnail The thumbnail image file.
Since:
2.2
- (void) portalInfo: (AGSPortalInfo *)  portalInfo
operation: (NSOperation *)  op
didFetchPortalThumbnail: (UIImage *)  thumbnail 
[optional]

Tells the delegate that the fetch operation of the portal's thumbnail image completed successfully.

Parameters:
portalInfo The portal info on which the fetch was done.
op The operation that performed the fetch.
thumbnail The thumbnail image file.
Since:
2.2