TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

JavaScript (client-side) Messaging Anti-Patterns

10 pointsby ifandelseabout 13 years ago

1 comment

klsabout 13 years ago
I tend to treat message passing data as immutable, I think in my time developing applications (almost 20 years now) I have hit a pattern maybe twice where I have needed something to modify the message before other listeners in the sequence receive it, but when they arise they can be a nasty pattern to deal with. It brings order of events to a pattern which for the most part is designed to be unordered. I have developed two patterns to deal with modifying messages when the need arises and I am still not sure which I like better.<p>The first is I clone the message and pass a mutable and immutable copy of the data, this seems to work ok but you still have to ensure order of events, so if the message passing pattern guarantees first in first out, I just make sure the registration sequence of modifying listeners are registered first. It is not bullet proof but it has worked for my needs.<p>The second pattern I have used is a concept of a preprocessor routine, kind of a method that does all the modification before the message event is fired, so I wire the data to the preprocessor and then the preprocessor fires off the message event after it has made it's modification.
评论 #3734844 未加载