Ejemplo n.º 1
0
    /**
     * Get Credit Transaction History items in a list
     */
    public static void getCreditHistory(BranchCallbackWithList callback)
    {
        var callbackId = _getNextCallbackId();

        _branchCallbacks[callbackId] = callback;

        _getCreditHistoryWithCallback(callbackId);
    }
    /**
     * Get Credit Transaction History items in a list for a specified bucket starting at a specified transaction id, and continuing for a specified number of items, either descending or ascending (0, 1)
     */
    public static void getCreditHistory(string bucket, string creditTransactionId, int length, int order, BranchCallbackWithList callback)
    {
        var callbackId = _getNextCallbackId();

        _branchCallbacks[callbackId] = callback;

        _getCreditHistoryForBucketWithTransactionLengthOrderAndCallback(bucket, creditTransactionId, length, order, callbackId);
    }
    /**
     * Get Credit Transaction History items in a list for a specified bucket
     */
    public static void getCreditHistory(string bucket, BranchCallbackWithList callback)
    {
        var callbackId = _getNextCallbackId();

        _branchCallbacks[callbackId] = callback;

        _getCreditHistoryForBucketWithCallback(bucket, callbackId);
    }
    /**
     * Get Credit Transaction History items in a list
     */
    public static void getCreditHistory(BranchCallbackWithList callback)
    {
        var callbackId = _getNextCallbackId();

        _branchCallbacks[callbackId] = callback;

        _getCreditHistoryWithCallback(callbackId);
    }
Ejemplo n.º 5
0
    /**
     * Get Credit Transaction History items in a list for a specified bucket
     */
    public static void getCreditHistory(string bucket, BranchCallbackWithList callback)
    {
        var callbackId = _getNextCallbackId();

        _branchCallbacks[callbackId] = callback;

        _getCreditHistoryForBucketWithCallback(bucket, callbackId);
    }
Ejemplo n.º 6
0
    /**
     * Get Credit Transaction History items in a list for a specified bucket starting at a specified transaction id, and continuing for a specified number of items, either descending or ascending (0, 1)
     */
    public static void getCreditHistory(string bucket, string creditTransactionId, int length, int order, BranchCallbackWithList callback)
    {
        var callbackId = _getNextCallbackId();

        _branchCallbacks[callbackId] = callback;

        _getCreditHistoryForBucketWithTransactionLengthOrderAndCallback(bucket, creditTransactionId, length, order, callbackId);
    }