Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
mark addResponseEventListener and removeResponseEventListener public …
Browse files Browse the repository at this point in the history
…to match other API functions
  • Loading branch information
hmuurine committed Mar 1, 2023
1 parent 4e1c42c commit 1e99767
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Frontend/library/src/PixelStreaming/PixelStreaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ export class PixelStreaming {
* @param name - The name of the response handler
* @param listener - The method to be activated when a message is received
*/
addResponseEventListener(
public addResponseEventListener(
name: string,
listener: (response: string) => void
) {
Expand All @@ -590,7 +590,7 @@ export class PixelStreaming {
* Remove a UE -> browser response event listener
* @param name - The name of the response handler
*/
removeResponseEventListener(name: string) {
public removeResponseEventListener(name: string) {
this._webRtcController.responseController.removeResponseEventListener(name);
}

Expand Down

0 comments on commit 1e99767

Please sign in to comment.