extract method

StreamBundle? extract(
  1. String streamId
)

Implementation

StreamBundle? extract(String streamId) {
  if (streamBufferMaps.containsKey(streamId)) {
    StreamBundle sb = streamBufferMaps[streamId]!;
    // slog.d("real extract content $contentBytes streamBufferMaps $streamBufferMaps", tag: _tag);
    return sb.copy();
  } else {
    return null;
  }
}