On 9 November 2015 at 20:49, <rhuij...@apache.org> wrote: > Author: rhuijben > Date: Mon Nov 9 17:49:59 2015 > New Revision: 1713489 > > URL: http://svn.apache.org/viewvc?rev=1713489&view=rev > Log: > Replace the track bucket in the request writing with a tiny bit more > advanced event bucket that tracks both writing done and destroyed. The > timings of these callbacks will allow simplifying some logic introduced > in r1712776. > > For now declare the event bucket as a private type. > > * buckets/event_buckets.c > New file. > > * outgoing.c > (request_writing_done): New function. > (request_writing_finished): Tweak to implement serf_bucket_event_callback_t. > (write_to_connection): Add event bucket directly after the request bucket, > instead of an aggregate when the writing is done. > Hi Bert,
What do you think about alternative design for event buckets: make event bucket wrap any other bucket (request bucket in our case)? I think it will be more flexible since we could add callback to be called before reading from wrapped bucket to track pending request. -- Ivan Zhakov