File size: 857 Bytes
daa8246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package common

import "github.com/gin-gonic/gin"

// BillingSettler 抽象计费会话的生命周期操作。
// 由 service.BillingSession 实现,存储在 RelayInfo 上以避免循环引用。
type BillingSettler interface {
	// Settle 根据实际消耗额度进行结算,计算 delta = actualQuota - preConsumedQuota,
	// 同时调整资金来源(钱包/订阅)和令牌额度。
	Settle(actualQuota int) error

	// Refund 退还所有预扣费额度(资金来源 + 令牌),幂等安全。
	// 通过 gopool 异步执行。如果已经结算或退款则不做任何操作。
	Refund(c *gin.Context)

	// NeedsRefund 返回会话是否存在需要退还的预扣状态(未结算且未退款)。
	NeedsRefund() bool

	// GetPreConsumedQuota 返回实际预扣的额度值(信任用户可能为 0)。
	GetPreConsumedQuota() int
}