您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

actions.js 415B

12345678910111213141516171819
  1. // @flow
  2. import { SET_LAST_N } from './actionTypes';
  3. /**
  4. * Sets the last-n, i.e., the number of remote videos to be requested from the bridge for the conference.
  5. *
  6. * @param {number} lastN - The number of remote videos to be requested.
  7. * @returns {{
  8. * type: SET_LAST_N,
  9. * lastN: number
  10. * }}
  11. */
  12. export function setLastN(lastN: number) {
  13. return {
  14. type: SET_LAST_N,
  15. lastN
  16. };
  17. }