[akka-user] How could I know if a streams completed from the outside

2016-09-26 Thread Guofeng Zhang
Hi,

I have defined a publisher actor and subscriber actor. How could I know if
the stream has been completed from the outside (where I create the stream)?

Thanks for your help.

Guofeng

-- 
>>  Read the docs: http://akka.io/docs/
>>  Check the FAQ: 
>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>  Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.


Re: [akka-user] How could I know if a streams completed from the outside

2016-09-26 Thread Konrad Malawski
Have you seen watchTermination on Source?

/**
 * Materializes to `Future[Done]` that completes on getting termination message.
 * The Future completes with success when received complete message
from upstream or cancel
 * from downstream. It fails with the same error when received error
message from
 * downstream.
 *
 * It is recommended to use the internally optimized `Keep.left` and
`Keep.right` combiners
 * where appropriate instead of manually writing functions that pass
through one of the values.
 */
def watchTermination[Mat2]()(matF: (Mat, Future[Done]) ⇒ Mat2):
ReprMat[Out, Mat2] = ???


Happy hakking

-- 
Konrad `ktoso` Malawski
Akka  @ Lightbend 

On 27 September 2016 at 05:19:11, Guofeng Zhang (guofen...@gmail.com) wrote:

Hi,

I have defined a publisher actor and subscriber actor. How could I know if
the stream has been completed from the outside (where I create the stream)?

Thanks for your help.

Guofeng
--
>> Read the docs: http://akka.io/docs/
>> Check the FAQ:
http://doc.akka.io/docs/akka/current/additional/faq.html
>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups
"Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

-- 
>>  Read the docs: http://akka.io/docs/
>>  Check the FAQ: 
>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>  Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.