There is something called an AWAIT handler, which is essentially a callback on a PORT! to tell you about events that have happened.
I don't want to get too deep into the R3-Alpha port model, but something has always bugged me about the naming of the events you get back when a particular asynchronous READ or WRITE has happened. That's because the events are named READ and WROTE.
With WRITE and WROTE there is fortunately a spelling difference for the present and past tenses. But unfortunately READ ("reed") and READ ("red") are spelled the same for present and past.
Right now, having a tense change is not strictly necessary...as you don't get a READ-BEGIN and WRITE-BEGIN event. The only events you hear about with reading and writing are after-the-fact. (It's the port "actor" that receives the initiating requests as READ and WRITE).
So calling the events READ and WRITE would seemingly be fine, and the author of the await handler can just accept that it's after. Saying "wrote" seems cute but the inconsistent appearance makes one wonder if there's a twisted variant of READ that you should be looking for as well. I think it causes more problems than it solves, because in software we are always pronouncing READ as "reed" in our heads.