servicefakes

package
v1.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 11, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Code generated by counterfeiter. DO NOT EDIT.

Code generated by counterfeiter. DO NOT EDIT.

Code generated by counterfeiter. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FakeObjectStore added in v0.15.5

type FakeObjectStore struct {
	DeleteEgressStub func(context.Context, *livekit.EgressInfo) error

	DeleteParticipantStub func(context.Context, livekit.RoomName, livekit.ParticipantIdentity) error

	DeleteRoomStub func(context.Context, livekit.RoomName) error

	ListEgressStub func(context.Context, livekit.RoomID) ([]*livekit.EgressInfo, error)

	ListParticipantsStub func(context.Context, livekit.RoomName) ([]*livekit.ParticipantInfo, error)

	ListRoomsStub func(context.Context, []livekit.RoomName) ([]*livekit.Room, error)

	LoadEgressStub func(context.Context, string) (*livekit.EgressInfo, error)

	LoadParticipantStub func(context.Context, livekit.RoomName, livekit.ParticipantIdentity) (*livekit.ParticipantInfo, error)

	LoadRoomStub func(context.Context, livekit.RoomName) (*livekit.Room, error)

	LockRoomStub func(context.Context, livekit.RoomName, time.Duration) (string, error)

	StoreEgressStub func(context.Context, *livekit.EgressInfo) error

	StoreParticipantStub func(context.Context, livekit.RoomName, *livekit.ParticipantInfo) error

	StoreRoomStub func(context.Context, *livekit.Room) error

	UnlockRoomStub func(context.Context, livekit.RoomName, string) error

	UpdateEgressStub func(context.Context, *livekit.EgressInfo) error
	// contains filtered or unexported fields
}

func (*FakeObjectStore) DeleteEgress added in v0.15.5

func (fake *FakeObjectStore) DeleteEgress(arg1 context.Context, arg2 *livekit.EgressInfo) error

func (*FakeObjectStore) DeleteEgressArgsForCall added in v0.15.5

func (fake *FakeObjectStore) DeleteEgressArgsForCall(i int) (context.Context, *livekit.EgressInfo)

func (*FakeObjectStore) DeleteEgressCallCount added in v0.15.5

func (fake *FakeObjectStore) DeleteEgressCallCount() int

func (*FakeObjectStore) DeleteEgressCalls added in v0.15.5

func (fake *FakeObjectStore) DeleteEgressCalls(stub func(context.Context, *livekit.EgressInfo) error)

func (*FakeObjectStore) DeleteEgressReturns added in v0.15.5

func (fake *FakeObjectStore) DeleteEgressReturns(result1 error)

func (*FakeObjectStore) DeleteEgressReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) DeleteEgressReturnsOnCall(i int, result1 error)

func (*FakeObjectStore) DeleteParticipant added in v0.15.5

func (fake *FakeObjectStore) DeleteParticipant(arg1 context.Context, arg2 livekit.RoomName, arg3 livekit.ParticipantIdentity) error

func (*FakeObjectStore) DeleteParticipantArgsForCall added in v0.15.5

func (fake *FakeObjectStore) DeleteParticipantArgsForCall(i int) (context.Context, livekit.RoomName, livekit.ParticipantIdentity)

func (*FakeObjectStore) DeleteParticipantCallCount added in v0.15.5

func (fake *FakeObjectStore) DeleteParticipantCallCount() int

func (*FakeObjectStore) DeleteParticipantCalls added in v0.15.5

func (fake *FakeObjectStore) DeleteParticipantCalls(stub func(context.Context, livekit.RoomName, livekit.ParticipantIdentity) error)

func (*FakeObjectStore) DeleteParticipantReturns added in v0.15.5

func (fake *FakeObjectStore) DeleteParticipantReturns(result1 error)

func (*FakeObjectStore) DeleteParticipantReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) DeleteParticipantReturnsOnCall(i int, result1 error)

func (*FakeObjectStore) DeleteRoom added in v0.15.5

func (fake *FakeObjectStore) DeleteRoom(arg1 context.Context, arg2 livekit.RoomName) error

func (*FakeObjectStore) DeleteRoomArgsForCall added in v0.15.5

func (fake *FakeObjectStore) DeleteRoomArgsForCall(i int) (context.Context, livekit.RoomName)

func (*FakeObjectStore) DeleteRoomCallCount added in v0.15.5

func (fake *FakeObjectStore) DeleteRoomCallCount() int

func (*FakeObjectStore) DeleteRoomCalls added in v0.15.5

func (fake *FakeObjectStore) DeleteRoomCalls(stub func(context.Context, livekit.RoomName) error)

func (*FakeObjectStore) DeleteRoomReturns added in v0.15.5

func (fake *FakeObjectStore) DeleteRoomReturns(result1 error)

func (*FakeObjectStore) DeleteRoomReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) DeleteRoomReturnsOnCall(i int, result1 error)

func (*FakeObjectStore) Invocations added in v0.15.5

func (fake *FakeObjectStore) Invocations() map[string][][]interface{}

func (*FakeObjectStore) ListEgress added in v0.15.5

func (fake *FakeObjectStore) ListEgress(arg1 context.Context, arg2 livekit.RoomID) ([]*livekit.EgressInfo, error)

func (*FakeObjectStore) ListEgressArgsForCall added in v0.15.5

func (fake *FakeObjectStore) ListEgressArgsForCall(i int) (context.Context, livekit.RoomID)

func (*FakeObjectStore) ListEgressCallCount added in v0.15.5

func (fake *FakeObjectStore) ListEgressCallCount() int

func (*FakeObjectStore) ListEgressCalls added in v0.15.5

func (fake *FakeObjectStore) ListEgressCalls(stub func(context.Context, livekit.RoomID) ([]*livekit.EgressInfo, error))

func (*FakeObjectStore) ListEgressReturns added in v0.15.5

func (fake *FakeObjectStore) ListEgressReturns(result1 []*livekit.EgressInfo, result2 error)

func (*FakeObjectStore) ListEgressReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) ListEgressReturnsOnCall(i int, result1 []*livekit.EgressInfo, result2 error)

func (*FakeObjectStore) ListParticipants added in v0.15.5

func (fake *FakeObjectStore) ListParticipants(arg1 context.Context, arg2 livekit.RoomName) ([]*livekit.ParticipantInfo, error)

func (*FakeObjectStore) ListParticipantsArgsForCall added in v0.15.5

func (fake *FakeObjectStore) ListParticipantsArgsForCall(i int) (context.Context, livekit.RoomName)

func (*FakeObjectStore) ListParticipantsCallCount added in v0.15.5

func (fake *FakeObjectStore) ListParticipantsCallCount() int

func (*FakeObjectStore) ListParticipantsCalls added in v0.15.5

func (fake *FakeObjectStore) ListParticipantsCalls(stub func(context.Context, livekit.RoomName) ([]*livekit.ParticipantInfo, error))

func (*FakeObjectStore) ListParticipantsReturns added in v0.15.5

func (fake *FakeObjectStore) ListParticipantsReturns(result1 []*livekit.ParticipantInfo, result2 error)

func (*FakeObjectStore) ListParticipantsReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) ListParticipantsReturnsOnCall(i int, result1 []*livekit.ParticipantInfo, result2 error)

func (*FakeObjectStore) ListRooms added in v0.15.5

func (fake *FakeObjectStore) ListRooms(arg1 context.Context, arg2 []livekit.RoomName) ([]*livekit.Room, error)

func (*FakeObjectStore) ListRoomsArgsForCall added in v0.15.5

func (fake *FakeObjectStore) ListRoomsArgsForCall(i int) (context.Context, []livekit.RoomName)

func (*FakeObjectStore) ListRoomsCallCount added in v0.15.5

func (fake *FakeObjectStore) ListRoomsCallCount() int

func (*FakeObjectStore) ListRoomsCalls added in v0.15.5

func (fake *FakeObjectStore) ListRoomsCalls(stub func(context.Context, []livekit.RoomName) ([]*livekit.Room, error))

func (*FakeObjectStore) ListRoomsReturns added in v0.15.5

func (fake *FakeObjectStore) ListRoomsReturns(result1 []*livekit.Room, result2 error)

func (*FakeObjectStore) ListRoomsReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) ListRoomsReturnsOnCall(i int, result1 []*livekit.Room, result2 error)

func (*FakeObjectStore) LoadEgress added in v0.15.5

func (fake *FakeObjectStore) LoadEgress(arg1 context.Context, arg2 string) (*livekit.EgressInfo, error)

func (*FakeObjectStore) LoadEgressArgsForCall added in v0.15.5

func (fake *FakeObjectStore) LoadEgressArgsForCall(i int) (context.Context, string)

func (*FakeObjectStore) LoadEgressCallCount added in v0.15.5

func (fake *FakeObjectStore) LoadEgressCallCount() int

func (*FakeObjectStore) LoadEgressCalls added in v0.15.5

func (fake *FakeObjectStore) LoadEgressCalls(stub func(context.Context, string) (*livekit.EgressInfo, error))

func (*FakeObjectStore) LoadEgressReturns added in v0.15.5

func (fake *FakeObjectStore) LoadEgressReturns(result1 *livekit.EgressInfo, result2 error)

func (*FakeObjectStore) LoadEgressReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) LoadEgressReturnsOnCall(i int, result1 *livekit.EgressInfo, result2 error)

func (*FakeObjectStore) LoadParticipant added in v0.15.5

func (*FakeObjectStore) LoadParticipantArgsForCall added in v0.15.5

func (fake *FakeObjectStore) LoadParticipantArgsForCall(i int) (context.Context, livekit.RoomName, livekit.ParticipantIdentity)

func (*FakeObjectStore) LoadParticipantCallCount added in v0.15.5

func (fake *FakeObjectStore) LoadParticipantCallCount() int

func (*FakeObjectStore) LoadParticipantCalls added in v0.15.5

func (*FakeObjectStore) LoadParticipantReturns added in v0.15.5

func (fake *FakeObjectStore) LoadParticipantReturns(result1 *livekit.ParticipantInfo, result2 error)

func (*FakeObjectStore) LoadParticipantReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) LoadParticipantReturnsOnCall(i int, result1 *livekit.ParticipantInfo, result2 error)

func (*FakeObjectStore) LoadRoom added in v0.15.5

func (fake *FakeObjectStore) LoadRoom(arg1 context.Context, arg2 livekit.RoomName) (*livekit.Room, error)

func (*FakeObjectStore) LoadRoomArgsForCall added in v0.15.5

func (fake *FakeObjectStore) LoadRoomArgsForCall(i int) (context.Context, livekit.RoomName)

func (*FakeObjectStore) LoadRoomCallCount added in v0.15.5

func (fake *FakeObjectStore) LoadRoomCallCount() int

func (*FakeObjectStore) LoadRoomCalls added in v0.15.5

func (fake *FakeObjectStore) LoadRoomCalls(stub func(context.Context, livekit.RoomName) (*livekit.Room, error))

func (*FakeObjectStore) LoadRoomReturns added in v0.15.5

func (fake *FakeObjectStore) LoadRoomReturns(result1 *livekit.Room, result2 error)

func (*FakeObjectStore) LoadRoomReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) LoadRoomReturnsOnCall(i int, result1 *livekit.Room, result2 error)

func (*FakeObjectStore) LockRoom added in v0.15.5

func (fake *FakeObjectStore) LockRoom(arg1 context.Context, arg2 livekit.RoomName, arg3 time.Duration) (string, error)

func (*FakeObjectStore) LockRoomArgsForCall added in v0.15.5

func (fake *FakeObjectStore) LockRoomArgsForCall(i int) (context.Context, livekit.RoomName, time.Duration)

func (*FakeObjectStore) LockRoomCallCount added in v0.15.5

func (fake *FakeObjectStore) LockRoomCallCount() int

func (*FakeObjectStore) LockRoomCalls added in v0.15.5

func (fake *FakeObjectStore) LockRoomCalls(stub func(context.Context, livekit.RoomName, time.Duration) (string, error))

func (*FakeObjectStore) LockRoomReturns added in v0.15.5

func (fake *FakeObjectStore) LockRoomReturns(result1 string, result2 error)

func (*FakeObjectStore) LockRoomReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) LockRoomReturnsOnCall(i int, result1 string, result2 error)

func (*FakeObjectStore) StoreEgress added in v0.15.5

func (fake *FakeObjectStore) StoreEgress(arg1 context.Context, arg2 *livekit.EgressInfo) error

func (*FakeObjectStore) StoreEgressArgsForCall added in v0.15.5

func (fake *FakeObjectStore) StoreEgressArgsForCall(i int) (context.Context, *livekit.EgressInfo)

func (*FakeObjectStore) StoreEgressCallCount added in v0.15.5

func (fake *FakeObjectStore) StoreEgressCallCount() int

func (*FakeObjectStore) StoreEgressCalls added in v0.15.5

func (fake *FakeObjectStore) StoreEgressCalls(stub func(context.Context, *livekit.EgressInfo) error)

func (*FakeObjectStore) StoreEgressReturns added in v0.15.5

func (fake *FakeObjectStore) StoreEgressReturns(result1 error)

func (*FakeObjectStore) StoreEgressReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) StoreEgressReturnsOnCall(i int, result1 error)

func (*FakeObjectStore) StoreParticipant added in v0.15.5

func (fake *FakeObjectStore) StoreParticipant(arg1 context.Context, arg2 livekit.RoomName, arg3 *livekit.ParticipantInfo) error

func (*FakeObjectStore) StoreParticipantArgsForCall added in v0.15.5

func (fake *FakeObjectStore) StoreParticipantArgsForCall(i int) (context.Context, livekit.RoomName, *livekit.ParticipantInfo)

func (*FakeObjectStore) StoreParticipantCallCount added in v0.15.5

func (fake *FakeObjectStore) StoreParticipantCallCount() int

func (*FakeObjectStore) StoreParticipantCalls added in v0.15.5

func (fake *FakeObjectStore) StoreParticipantCalls(stub func(context.Context, livekit.RoomName, *livekit.ParticipantInfo) error)

func (*FakeObjectStore) StoreParticipantReturns added in v0.15.5

func (fake *FakeObjectStore) StoreParticipantReturns(result1 error)

func (*FakeObjectStore) StoreParticipantReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) StoreParticipantReturnsOnCall(i int, result1 error)

func (*FakeObjectStore) StoreRoom added in v0.15.5

func (fake *FakeObjectStore) StoreRoom(arg1 context.Context, arg2 *livekit.Room) error

func (*FakeObjectStore) StoreRoomArgsForCall added in v0.15.5

func (fake *FakeObjectStore) StoreRoomArgsForCall(i int) (context.Context, *livekit.Room)

func (*FakeObjectStore) StoreRoomCallCount added in v0.15.5

func (fake *FakeObjectStore) StoreRoomCallCount() int

func (*FakeObjectStore) StoreRoomCalls added in v0.15.5

func (fake *FakeObjectStore) StoreRoomCalls(stub func(context.Context, *livekit.Room) error)

func (*FakeObjectStore) StoreRoomReturns added in v0.15.5

func (fake *FakeObjectStore) StoreRoomReturns(result1 error)

func (*FakeObjectStore) StoreRoomReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) StoreRoomReturnsOnCall(i int, result1 error)

func (*FakeObjectStore) UnlockRoom added in v0.15.5

func (fake *FakeObjectStore) UnlockRoom(arg1 context.Context, arg2 livekit.RoomName, arg3 string) error

func (*FakeObjectStore) UnlockRoomArgsForCall added in v0.15.5

func (fake *FakeObjectStore) UnlockRoomArgsForCall(i int) (context.Context, livekit.RoomName, string)

func (*FakeObjectStore) UnlockRoomCallCount added in v0.15.5

func (fake *FakeObjectStore) UnlockRoomCallCount() int

func (*FakeObjectStore) UnlockRoomCalls added in v0.15.5

func (fake *FakeObjectStore) UnlockRoomCalls(stub func(context.Context, livekit.RoomName, string) error)

func (*FakeObjectStore) UnlockRoomReturns added in v0.15.5

func (fake *FakeObjectStore) UnlockRoomReturns(result1 error)

func (*FakeObjectStore) UnlockRoomReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) UnlockRoomReturnsOnCall(i int, result1 error)

func (*FakeObjectStore) UpdateEgress added in v0.15.5

func (fake *FakeObjectStore) UpdateEgress(arg1 context.Context, arg2 *livekit.EgressInfo) error

func (*FakeObjectStore) UpdateEgressArgsForCall added in v0.15.5

func (fake *FakeObjectStore) UpdateEgressArgsForCall(i int) (context.Context, *livekit.EgressInfo)

func (*FakeObjectStore) UpdateEgressCallCount added in v0.15.5

func (fake *FakeObjectStore) UpdateEgressCallCount() int

func (*FakeObjectStore) UpdateEgressCalls added in v0.15.5

func (fake *FakeObjectStore) UpdateEgressCalls(stub func(context.Context, *livekit.EgressInfo) error)

func (*FakeObjectStore) UpdateEgressReturns added in v0.15.5

func (fake *FakeObjectStore) UpdateEgressReturns(result1 error)

func (*FakeObjectStore) UpdateEgressReturnsOnCall added in v0.15.5

func (fake *FakeObjectStore) UpdateEgressReturnsOnCall(i int, result1 error)

type FakeRoomAllocator added in v0.15.0

type FakeRoomAllocator struct {
	CreateRoomStub func(context.Context, *livekit.CreateRoomRequest) (*livekit.Room, error)
	// contains filtered or unexported fields
}

func (*FakeRoomAllocator) CreateRoom added in v0.15.0

func (fake *FakeRoomAllocator) CreateRoom(arg1 context.Context, arg2 *livekit.CreateRoomRequest) (*livekit.Room, error)

func (*FakeRoomAllocator) CreateRoomArgsForCall added in v0.15.0

func (fake *FakeRoomAllocator) CreateRoomArgsForCall(i int) (context.Context, *livekit.CreateRoomRequest)

func (*FakeRoomAllocator) CreateRoomCallCount added in v0.15.0

func (fake *FakeRoomAllocator) CreateRoomCallCount() int

func (*FakeRoomAllocator) CreateRoomCalls added in v0.15.0

func (fake *FakeRoomAllocator) CreateRoomCalls(stub func(context.Context, *livekit.CreateRoomRequest) (*livekit.Room, error))

func (*FakeRoomAllocator) CreateRoomReturns added in v0.15.0

func (fake *FakeRoomAllocator) CreateRoomReturns(result1 *livekit.Room, result2 error)

func (*FakeRoomAllocator) CreateRoomReturnsOnCall added in v0.15.0

func (fake *FakeRoomAllocator) CreateRoomReturnsOnCall(i int, result1 *livekit.Room, result2 error)

func (*FakeRoomAllocator) Invocations added in v0.15.0

func (fake *FakeRoomAllocator) Invocations() map[string][][]interface{}

type FakeServiceStore added in v0.15.5

type FakeServiceStore struct {
	DeleteEgressStub func(context.Context, *livekit.EgressInfo) error

	ListEgressStub func(context.Context, livekit.RoomID) ([]*livekit.EgressInfo, error)

	ListParticipantsStub func(context.Context, livekit.RoomName) ([]*livekit.ParticipantInfo, error)

	ListRoomsStub func(context.Context, []livekit.RoomName) ([]*livekit.Room, error)

	LoadEgressStub func(context.Context, string) (*livekit.EgressInfo, error)

	LoadParticipantStub func(context.Context, livekit.RoomName, livekit.ParticipantIdentity) (*livekit.ParticipantInfo, error)

	LoadRoomStub func(context.Context, livekit.RoomName) (*livekit.Room, error)

	StoreEgressStub func(context.Context, *livekit.EgressInfo) error

	UpdateEgressStub func(context.Context, *livekit.EgressInfo) error
	// contains filtered or unexported fields
}

func (*FakeServiceStore) DeleteEgress added in v0.15.6

func (fake *FakeServiceStore) DeleteEgress(arg1 context.Context, arg2 *livekit.EgressInfo) error

func (*FakeServiceStore) DeleteEgressArgsForCall added in v0.15.6

func (fake *FakeServiceStore) DeleteEgressArgsForCall(i int) (context.Context, *livekit.EgressInfo)

func (*FakeServiceStore) DeleteEgressCallCount added in v0.15.6

func (fake *FakeServiceStore) DeleteEgressCallCount() int

func (*FakeServiceStore) DeleteEgressCalls added in v0.15.6

func (fake *FakeServiceStore) DeleteEgressCalls(stub func(context.Context, *livekit.EgressInfo) error)

func (*FakeServiceStore) DeleteEgressReturns added in v0.15.6

func (fake *FakeServiceStore) DeleteEgressReturns(result1 error)

func (*FakeServiceStore) DeleteEgressReturnsOnCall added in v0.15.6

func (fake *FakeServiceStore) DeleteEgressReturnsOnCall(i int, result1 error)

func (*FakeServiceStore) Invocations added in v0.15.5

func (fake *FakeServiceStore) Invocations() map[string][][]interface{}

func (*FakeServiceStore) ListEgress added in v0.15.6

func (fake *FakeServiceStore) ListEgress(arg1 context.Context, arg2 livekit.RoomID) ([]*livekit.EgressInfo, error)

func (*FakeServiceStore) ListEgressArgsForCall added in v0.15.6

func (fake *FakeServiceStore) ListEgressArgsForCall(i int) (context.Context, livekit.RoomID)

func (*FakeServiceStore) ListEgressCallCount added in v0.15.6

func (fake *FakeServiceStore) ListEgressCallCount() int

func (*FakeServiceStore) ListEgressCalls added in v0.15.6

func (fake *FakeServiceStore) ListEgressCalls(stub func(context.Context, livekit.RoomID) ([]*livekit.EgressInfo, error))

func (*FakeServiceStore) ListEgressReturns added in v0.15.6

func (fake *FakeServiceStore) ListEgressReturns(result1 []*livekit.EgressInfo, result2 error)

func (*FakeServiceStore) ListEgressReturnsOnCall added in v0.15.6

func (fake *FakeServiceStore) ListEgressReturnsOnCall(i int, result1 []*livekit.EgressInfo, result2 error)

func (*FakeServiceStore) ListParticipants added in v0.15.5

func (fake *FakeServiceStore) ListParticipants(arg1 context.Context, arg2 livekit.RoomName) ([]*livekit.ParticipantInfo, error)

func (*FakeServiceStore) ListParticipantsArgsForCall added in v0.15.5

func (fake *FakeServiceStore) ListParticipantsArgsForCall(i int) (context.Context, livekit.RoomName)

func (*FakeServiceStore) ListParticipantsCallCount added in v0.15.5

func (fake *FakeServiceStore) ListParticipantsCallCount() int

func (*FakeServiceStore) ListParticipantsCalls added in v0.15.5

func (fake *FakeServiceStore) ListParticipantsCalls(stub func(context.Context, livekit.RoomName) ([]*livekit.ParticipantInfo, error))

func (*FakeServiceStore) ListParticipantsReturns added in v0.15.5

func (fake *FakeServiceStore) ListParticipantsReturns(result1 []*livekit.ParticipantInfo, result2 error)

func (*FakeServiceStore) ListParticipantsReturnsOnCall added in v0.15.5

func (fake *FakeServiceStore) ListParticipantsReturnsOnCall(i int, result1 []*livekit.ParticipantInfo, result2 error)

func (*FakeServiceStore) ListRooms added in v0.15.5

func (fake *FakeServiceStore) ListRooms(arg1 context.Context, arg2 []livekit.RoomName) ([]*livekit.Room, error)

func (*FakeServiceStore) ListRoomsArgsForCall added in v0.15.5

func (fake *FakeServiceStore) ListRoomsArgsForCall(i int) (context.Context, []livekit.RoomName)

func (*FakeServiceStore) ListRoomsCallCount added in v0.15.5

func (fake *FakeServiceStore) ListRoomsCallCount() int

func (*FakeServiceStore) ListRoomsCalls added in v0.15.5

func (fake *FakeServiceStore) ListRoomsCalls(stub func(context.Context, []livekit.RoomName) ([]*livekit.Room, error))

func (*FakeServiceStore) ListRoomsReturns added in v0.15.5

func (fake *FakeServiceStore) ListRoomsReturns(result1 []*livekit.Room, result2 error)

func (*FakeServiceStore) ListRoomsReturnsOnCall added in v0.15.5

func (fake *FakeServiceStore) ListRoomsReturnsOnCall(i int, result1 []*livekit.Room, result2 error)

func (*FakeServiceStore) LoadEgress added in v0.15.6

func (fake *FakeServiceStore) LoadEgress(arg1 context.Context, arg2 string) (*livekit.EgressInfo, error)

func (*FakeServiceStore) LoadEgressArgsForCall added in v0.15.6

func (fake *FakeServiceStore) LoadEgressArgsForCall(i int) (context.Context, string)

func (*FakeServiceStore) LoadEgressCallCount added in v0.15.6

func (fake *FakeServiceStore) LoadEgressCallCount() int

func (*FakeServiceStore) LoadEgressCalls added in v0.15.6

func (fake *FakeServiceStore) LoadEgressCalls(stub func(context.Context, string) (*livekit.EgressInfo, error))

func (*FakeServiceStore) LoadEgressReturns added in v0.15.6

func (fake *FakeServiceStore) LoadEgressReturns(result1 *livekit.EgressInfo, result2 error)

func (*FakeServiceStore) LoadEgressReturnsOnCall added in v0.15.6

func (fake *FakeServiceStore) LoadEgressReturnsOnCall(i int, result1 *livekit.EgressInfo, result2 error)

func (*FakeServiceStore) LoadParticipant added in v0.15.5

func (*FakeServiceStore) LoadParticipantArgsForCall added in v0.15.5

func (fake *FakeServiceStore) LoadParticipantArgsForCall(i int) (context.Context, livekit.RoomName, livekit.ParticipantIdentity)

func (*FakeServiceStore) LoadParticipantCallCount added in v0.15.5

func (fake *FakeServiceStore) LoadParticipantCallCount() int

func (*FakeServiceStore) LoadParticipantCalls added in v0.15.5

func (*FakeServiceStore) LoadParticipantReturns added in v0.15.5

func (fake *FakeServiceStore) LoadParticipantReturns(result1 *livekit.ParticipantInfo, result2 error)

func (*FakeServiceStore) LoadParticipantReturnsOnCall added in v0.15.5

func (fake *FakeServiceStore) LoadParticipantReturnsOnCall(i int, result1 *livekit.ParticipantInfo, result2 error)

func (*FakeServiceStore) LoadRoom added in v0.15.5

func (fake *FakeServiceStore) LoadRoom(arg1 context.Context, arg2 livekit.RoomName) (*livekit.Room, error)

func (*FakeServiceStore) LoadRoomArgsForCall added in v0.15.5

func (fake *FakeServiceStore) LoadRoomArgsForCall(i int) (context.Context, livekit.RoomName)

func (*FakeServiceStore) LoadRoomCallCount added in v0.15.5

func (fake *FakeServiceStore) LoadRoomCallCount() int

func (*FakeServiceStore) LoadRoomCalls added in v0.15.5

func (fake *FakeServiceStore) LoadRoomCalls(stub func(context.Context, livekit.RoomName) (*livekit.Room, error))

func (*FakeServiceStore) LoadRoomReturns added in v0.15.5

func (fake *FakeServiceStore) LoadRoomReturns(result1 *livekit.Room, result2 error)

func (*FakeServiceStore) LoadRoomReturnsOnCall added in v0.15.5

func (fake *FakeServiceStore) LoadRoomReturnsOnCall(i int, result1 *livekit.Room, result2 error)

func (*FakeServiceStore) StoreEgress added in v0.15.6

func (fake *FakeServiceStore) StoreEgress(arg1 context.Context, arg2 *livekit.EgressInfo) error

func (*FakeServiceStore) StoreEgressArgsForCall added in v0.15.6

func (fake *FakeServiceStore) StoreEgressArgsForCall(i int) (context.Context, *livekit.EgressInfo)

func (*FakeServiceStore) StoreEgressCallCount added in v0.15.6

func (fake *FakeServiceStore) StoreEgressCallCount() int

func (*FakeServiceStore) StoreEgressCalls added in v0.15.6

func (fake *FakeServiceStore) StoreEgressCalls(stub func(context.Context, *livekit.EgressInfo) error)

func (*FakeServiceStore) StoreEgressReturns added in v0.15.6

func (fake *FakeServiceStore) StoreEgressReturns(result1 error)

func (*FakeServiceStore) StoreEgressReturnsOnCall added in v0.15.6

func (fake *FakeServiceStore) StoreEgressReturnsOnCall(i int, result1 error)

func (*FakeServiceStore) UpdateEgress added in v0.15.6

func (fake *FakeServiceStore) UpdateEgress(arg1 context.Context, arg2 *livekit.EgressInfo) error

func (*FakeServiceStore) UpdateEgressArgsForCall added in v0.15.6

func (fake *FakeServiceStore) UpdateEgressArgsForCall(i int) (context.Context, *livekit.EgressInfo)

func (*FakeServiceStore) UpdateEgressCallCount added in v0.15.6

func (fake *FakeServiceStore) UpdateEgressCallCount() int

func (*FakeServiceStore) UpdateEgressCalls added in v0.15.6

func (fake *FakeServiceStore) UpdateEgressCalls(stub func(context.Context, *livekit.EgressInfo) error)

func (*FakeServiceStore) UpdateEgressReturns added in v0.15.6

func (fake *FakeServiceStore) UpdateEgressReturns(result1 error)

func (*FakeServiceStore) UpdateEgressReturnsOnCall added in v0.15.6

func (fake *FakeServiceStore) UpdateEgressReturnsOnCall(i int, result1 error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL