Skip to content

Commit

Permalink
refactor:changed interface method sortings
Browse files Browse the repository at this point in the history
  • Loading branch information
kjs001127 authored and kjs001127 committed Apr 24, 2023
1 parent cf8695b commit ffe06a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/jitter/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package jitter

type Listener interface {
OnPacketLoss(currentTs, remainingTs int64)
OnLatencyChanged(new int64)
OnPacketEnqueue(currentTs, remainingTs int64, pkt *Packet)
OnPacketDequeue(currentTs, remainingTs int64, pkt []*Packet)
OnLatencyChanged(new int64)
}

type NullListener struct {
Expand Down

0 comments on commit ffe06a8

Please sign in to comment.