Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/rtc/participant.go
Original file line number Diff line number Diff line change
Expand Up @@ -1426,6 +1426,10 @@ func (p *ParticipantImpl) IsReconnect() bool {
return p.params.Reconnect
}

func (p *ParticipantImpl) IsMigration() bool {
return p.params.Migration
}

func (p *ParticipantImpl) maybeRecordRTCanceled(closeReason types.ParticipantCloseReason) {
if p.HasConnected() {
return
Expand Down
1 change: 1 addition & 0 deletions pkg/rtc/types/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ type LocalParticipant interface {
dataTracks []*livekit.PublishDataTrackResponse,
)
IsReconnect() bool
IsMigration() bool
MoveToRoom(params MoveToRoomParams)

UpdateMediaRTT(rtt uint32)
Expand Down
63 changes: 63 additions & 0 deletions pkg/rtc/types/typesfakes/fake_local_participant.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions pkg/service/wire_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.