| Package | com.adobe.mediacore.timeline.resolvers |
| Interface | public interface ContentResolverClient |
| Method | Defined By | ||
|---|---|---|---|
notifyCompleted(opportunity:Opportunity):void
Notifies PSDK that the specified opportunity was resolved successful. | ContentResolverClient | ||
Notifies PSDK that the specified opportunity was not resolved. | ContentResolverClient | ||
process(proposals:Vector.<TimelineOperation>):void
Instructs PSDK to process the specified proposals to the media player timeline. | ContentResolverClient | ||
| notifyCompleted | () | method |
public function notifyCompleted(opportunity:Opportunity):voidNotifies PSDK that the specified opportunity was resolved successful. This doesn't mean that the resolving the specified opportunity has resulted in timeline operations.
Parameters
opportunity:Opportunity — The opportunity which completed successfully.
|
| notifyFailed | () | method |
public function notifyFailed(opportunity:Opportunity, mediaError:MediaError):voidNotifies PSDK that the specified opportunity was not resolved. The error and any additional information are made available through the media error parameter.
Parameters
opportunity:Opportunity — The opportunity which failed to resolve.
| |
mediaError:MediaError — Media error object describing the error which occurred.
|
| process | () | method |
public function process(proposals:Vector.<TimelineOperation>):voidInstructs PSDK to process the specified proposals to the media player timeline.
Parameters
proposals:Vector.<TimelineOperation> — Timeline operations to be proposed.
|