Class SKPaymentTransactionState


  • public final class SKPaymentTransactionState
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Deferred
      The transaction is in the queue, but its final status is pending external action.
      static long Failed
      Transaction was cancelled or failed before being added to the server queue.
      static long Purchased
      Transaction is in queue, user has been charged.
      static long Purchasing
      Transaction is being added to the server queue.
      static long Restored
      Transaction was restored from user's purchase history.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Purchasing

        public static final long Purchasing
        Transaction is being added to the server queue.
        See Also:
        Constant Field Values
      • Purchased

        public static final long Purchased
        Transaction is in queue, user has been charged. Client should complete the transaction.
        See Also:
        Constant Field Values
      • Failed

        public static final long Failed
        Transaction was cancelled or failed before being added to the server queue.
        See Also:
        Constant Field Values
      • Restored

        public static final long Restored
        Transaction was restored from user's purchase history. Client should complete the transaction.
        See Also:
        Constant Field Values
      • Deferred

        public static final long Deferred
        The transaction is in the queue, but its final status is pending external action.
        See Also:
        Constant Field Values