Event handler E1 makes a long running network request. Event handler E2 is very quick and doesn't make a network request. It writes to database.
E1 is guaranteed to start to execute before E2 however, E1 finishes after E2. How can I force that E2 always finishes after E1?
Thanks.