GARSessionDelegate
Delegate for receiving callbacks from a GARSession
.
All methods are optional.
Summary
Inheritance
Inherits from:<NSObject>
Public methods
void
void
void
void
Public methods
session:didFailToHostAnchor:
- (void)session:didFailToHostAnchor:
A call to hostCloudAnchor:error: (GARSession(CloudAnchors))
failed.
Inspect the value of GARAnchor.cloudState
for details.
session
|
|
anchor
|
The
GARAnchor
that was returned from hostCloudAnchor:error: (GARSession(CloudAnchors))
, snapshotted at the failure of hosting. |
session:didFailToResolveAnchor:
- (void)session:didFailToResolveAnchor:
A call to resolveCloudAnchorWithIdentifier:error: (GARSession(CloudAnchors))
failed.
Inspect the value of GARAnchor.cloudState
for details.
session
|
|
anchor
|
The
GARAnchor
that was returned from resolveCloudAnchorWithIdentifier:error: (GARSession(CloudAnchors))
, snapshotted at the failure of resolving. |
session:didHostAnchor:
- (void)session:didHostAnchor:
A call to hostCloudAnchor:error: (GARSession(CloudAnchors))
was successful.
session
|
|
anchor
|
The
GARAnchor
that was returned from hostCloudAnchor:error: (GARSession(CloudAnchors))
, snapshotted at the completion of hosting. |
session:didResolveAnchor:
- (void)session:didResolveAnchor:
A call to resolveCloudAnchorWithIdentifier:error: (GARSession(CloudAnchors))
was successful.
session
|
|
anchor
|
The
GARAnchor
that was returned from resolveCloudAnchorWithIdentifier:error: (GARSession(CloudAnchors))
, snapshotted at the completion of resolving. |