Hi there,
When I implemented the FilteredStream I did not quite find any relevant case for implementing such a feature.
The reason is that when you register a follower you can assign an action that will be invoked when a tweet from that follower is received.
Please let me know if this solves your problem. If it does not I can implement this feature for the next release.
Linvi
When I implemented the FilteredStream I did not quite find any relevant case for implementing such a feature.
The reason is that when you register a follower you can assign an action that will be invoked when a tweet from that follower is received.
var fs = Stream.CreateFilteredStream(); fs.AddFollow(483748374, tweet => { // This follower posted this tweet! }); fs.StartStreamMatchingAllConditions();
Linvi