Skip to content

Commit

Permalink
Add get subtrack count commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaboleken committed Nov 20, 2024
1 parent 2b7dbf2 commit 528877a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/main/java/io/antmedia/websocket/WebSocketConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -598,11 +598,31 @@ private WebSocketConstants() {
*/
public static final String GET_SUBTRACKS_COMMAND = "getSubtracks";

/**
* Command to get subtrack count for a main track
*/
public static final String GET_SUBTRACKS_COUNT_COMMAND = "getSubtracksCount";

/**
* subtrack (broadcast) object list notification
*/
public static final String SUBTRACK_LIST_NOTIFICATION = "subtrackList";

/**
* status field in websocket communication
*/
public static final String STATUS = "status";

/*
* count field in websocket communication
*/
public static final String COUNT = "count";

/**
* subtrack (broadcast) object count notification
*/
public static final String SUBTRACK_COUNT_NOTIFICATION = "subtrackCount";

/**
* subtrack (broadcast) object list
*/
Expand Down

0 comments on commit 528877a

Please sign in to comment.