Skip to content

Commit cb8745c

Browse files
committed
add method for credential updates
1 parent d786dbd commit cb8745c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

livekit-rtc/livekit/rtc/frame_processor.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@ def is_enabled(self) -> bool: ...
1616
def set_enabled(self, enable: bool): ...
1717

1818
@abstractmethod
19-
def _set_context(
19+
def _update_stream_info(
2020
self,
2121
*,
2222
room_name: str,
2323
participant_identity: str,
2424
publication_sid: str,
2525
): ...
2626

27+
@abstractmethod
28+
def _update_credentials(self, *, token: str, url: str): ...
29+
2730
@abstractmethod
2831
def _process(self, frame: T) -> T: ...
2932

0 commit comments

Comments
 (0)