mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
44 lines
916 B
Go
44 lines
916 B
Go
package retry
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
func QueryAccountUntilSuccessful(
|
|
ctx context.Context, ex types.ExchangeAccountService,
|
|
) (account *types.Account, err error) {
|
|
var op = func() (err2 error) {
|
|
account, err2 = ex.QueryAccount(ctx)
|
|
return err2
|
|
}
|
|
|
|
err = GeneralBackoff(ctx, op)
|
|
return account, err
|
|
}
|
|
|
|
func QueryAccountBalancesUntilSuccessful(
|
|
ctx context.Context, ex types.ExchangeAccountService,
|
|
) (bals types.BalanceMap, err error) {
|
|
var op = func() (err2 error) {
|
|
bals, err2 = ex.QueryAccountBalances(ctx)
|
|
return err2
|
|
}
|
|
|
|
err = GeneralBackoff(ctx, op)
|
|
return bals, err
|
|
}
|
|
|
|
func QueryAccountBalancesUntilSuccessfulLite(
|
|
ctx context.Context, ex types.ExchangeAccountService,
|
|
) (bals types.BalanceMap, err error) {
|
|
var op = func() (err2 error) {
|
|
bals, err2 = ex.QueryAccountBalances(ctx)
|
|
return err2
|
|
}
|
|
|
|
err = GeneralLiteBackoff(ctx, op)
|
|
return bals, err
|
|
}
|