getUsers

Gets the user list in the CDN live streaming.

public final ArrayList<TranscodingUser> getUsers() {
    Collection<TranscodingUser> values = transcodingUsers.values();
    return new ArrayList<>(values);
  }

Details

This method retrieves all users in the CDN live streaming. The user list returned by this method is read-only and should not be modified.

Returns

The user list. See TranscodingUser for details.