slightly change example
This commit is contained in:
parent
0f799a7768
commit
f0326607ee
1 changed files with 3 additions and 8 deletions
|
@ -142,6 +142,7 @@ impl Example {
|
|||
example_field,
|
||||
hex::encode(id)
|
||||
);
|
||||
// Fake data stream with some delays in item production
|
||||
let stream =
|
||||
Box::pin(stream::iter([100, 200, 300, 400]).then(|x| async move {
|
||||
tokio::time::sleep(Duration::from_millis(500)).await;
|
||||
|
@ -191,16 +192,10 @@ impl StreamingEndpointHandler<ExampleMessage> for Example {
|
|||
msg.msg()
|
||||
);
|
||||
let source_stream = msg.take_stream().unwrap();
|
||||
// Return same stream with 300ms delay
|
||||
let new_stream = Box::pin(source_stream.then(|x| async move {
|
||||
info!(
|
||||
"Handler: stream got bytes {:?}",
|
||||
x.as_ref().map(|b| b.len())
|
||||
);
|
||||
tokio::time::sleep(Duration::from_millis(300)).await;
|
||||
Ok(Bytes::from(vec![
|
||||
10u8;
|
||||
x.map(|b| b.len()).unwrap_or(1422) * 2
|
||||
]))
|
||||
x
|
||||
}));
|
||||
Resp::new(ExampleResponse {
|
||||
example_field: false,
|
||||
|
|
Loading…
Reference in a new issue