ollran

ollran OP

I think that this is called a function reference but I’m not sure.

Anyway, this works:

def start_link(_arg) do
  Task.start_link(&check_updates/0)
end

But what if check_updates requires a parameter? So it would be check_updates/1. How can I call it in Tasks.start_link function?

First 4 of 4 Posts Switch mode

sribe

sribe

fn () -> check_updates(whatever) end

OvermindDL1

OvermindDL1

Then you’d have to use an anonymous function instead:

def start_link(_arg) do
  Task.start_link(fn -> check_updates(arguments) end)
end

:slight_smile:

EDIT: Lol @sribe by like 2 seconds! ^.^

sribe

sribe

:men_wrestling:

rvirding

rvirding

Creator of Erlang

To be picky &check_updates/1 is actually just syntactic sugar for fn (x) -> check_updates(x) end. All the & capture operator does is transform to an anonymous function. It has some syntax limitations when using it to include arguments, for example when you wanted to create an anonymous function with 0 arguments.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
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
spammy
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
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
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
roeland
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
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

mudasobwa
MdexMultilineCells is an MDEx plugin enabling multi-line cells in Markdown tables with full inline/block Markdown rendering and automati...
New
JesseHerrick
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
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

We're in Beta

About us Mission Statement