CharlesO
I’m looking to improve this pattern.
It is a pattern I use in a lot of my projects.
defmodule Handler do
def handle_request(data) do
response = apply(@some_module_from_config, :parse, [data])
# do_something_with_response(response)
...
end
end
I then have customer specific implementations of :parse in separate modules, for example
defmodule CustomerA do
def parse(data) do
# specific parsing of this data for Customer-A
end
end
defmodule CustomerB do
def parse(data) do
# specific parsing of this data for Customer-B
end
end
This works, but can it be improved?
Is there a benefit for example to have a @behaviour in Handler which defines :parse and other functions
Then each Customer module no implements use Handler
Please are their better patterns for doing this?
Thanks.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 14 Posts
Eiji
No need to use
applyas it’s much more useful if you have function name stored in variable.Not only it would not give you any benefit, but it would also be wrongly used.
In
Handlermodule you have to define callbacks and / or macrocallbacks. You use@behaviourattribute inCustomerAandCustomerBmodules. In this tiny example it’s not important at all, but in general you use this to make sure that all callbacks are implemented asElixirgives compilation warning otherwise.egze
I also recommend watching the keynote from José https://www.youtube.com/watch?v=agkXUp0hCW8
He goes into the topic what to use when.
dimitarvp
How does your code branch on input data and decides which module to use?
I just recently had to do this and since I did not have a lot of modules and not too many input shapes I just made a router / dispatcher module that basically pattern-matches on the input and calls different module + function combo i.e.
Where
Commands.detect_by_args/1simply uses several pattern-matching function heads.CharlesO
I’m trying to understand you point sir.
Say I have more functions in handler module, and i want to ensure that every customer module implements all the functions correctly, then just like GenServer we coukd use @behavior correct?
CharlesO
In my case i have the same app deployed to different customers.
Each customer has specific processing they need.
I implement a module per customer, then in config, i have a
customer_module_namesetting.In this module, i do the customer specific processing.
The main app, looks for module name, then calls a function:
process_data, which every customer module is expected to have implemented.dimitarvp
Sounds like what I did but with multiple dispatchers (one per customer).
Why are you not satisfied with that solution?
Eiji
Behaviours are well documented, so it would be easiest to check it out. For example here is a quote I was referring to:
al2o3cr
The major benefit is compile-time checking:
CustomerAsays@behaviour Handlerbut doesn’t supply callbacks with the correct arities, the compiler will complainAs a side bonus, libraries like
moxcan use that same behaviour for their definitions.CharlesO
Please can you point to a simple reference implementation?
I’ve not written this type of behavior module before.
I understand it requires macros, yes?
thomas642daniel
Hello,
I love the idea of using behaviors here; it’s like setting a standard for a well-dressed party—everyone knows the dress code!