Android SDK Version


public abstract class ResultProcessor
com.facebook.share.internal is solely for the use of other packages within the Facebook SDK for Android. Use of any of the classes in this package is unsupported, and they may be modified or removed without warning at any time.
Callback class to allow derivations of FacebookDialogBase to do custom operations
Constructor Summary
ConstructorDescription
ResultProcessor(FacebookCallback<?> appCallback)
Method Summary
Modifier and TypeMethodDescription
abstract UnitonSuccess(AppCall appCall, Bundle results)
UnitonCancel(AppCall appCall) Override this if anything needs to be done on cancellation (e.g.
UnitonError(AppCall appCall, FacebookException error) Override this if anything needs to be done on error (e.g.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructor Detail

ResultProcessor

ResultProcessor(FacebookCallback<?> appCallback)
Method Detail

onSuccess

 abstract UnitonSuccess(AppCall appCall, Bundle results)

onCancel

UnitonCancel(AppCall appCall)
Override this if anything needs to be done on cancellation (e.g. Logging)

onError

UnitonError(AppCall appCall, FacebookException error)
Override this if anything needs to be done on error (e.g. Logging)