Tagged Questions
2
votes
1answer
91 views
How can I fetch each part from An Erlang Pid?
pid(A, B, C) can generate a pid <A.B.C>, how can I get A, B and C from a pid?
1
vote
1answer
57 views
Erlang: What happens when you f() a Pid in erl?
Say I'm working with some simple processes in erl:
1> Fun = fun(F) -> F(F) end.
#Fun<erl_eval.6.82930912>
2> Pid = spawn(fun() -> Fun(Fun) end).
<0.178.0>
3> f(Pid).
What ...
0
votes
1answer
70 views
Erlang print processID?
This is a really simple question pertaining to printing out the process id of a connection. For example printing out Listen in this one? I'm assuming Listen is a Pid btw...
{ok, Listen} = ...
1
vote
3answers
148 views
Sending message Pid Erlang
I would like to know, how can i send a message to process with erlang.
I did start a process and the output shows me that the pid is <0.39.0>.
My problem is how can i send a message to this process ...
2
votes
2answers
259 views
Erlang: How does one keep track of senders in a messaging system?
I am an erlang newbie and I am trying to build my first messaging application. My question has 2 parts
When I open two separate erlang consoles on my terminal without specifying a -sname attribute ...
4
votes
2answers
123 views
How to know the id of a node in erlang
When we run a node() command we get the pid of the node. In the format <0.X.0> if we are on the same node and we get a result of the form < X.Y.0> when running the same command from some other ...
5
votes
1answer
775 views
How do I found out which node an erlang process is running on?
Given that I can send PIDs from a process to an other, even across nodes, if I receive a Pid from a process within a different process (possibly on a different node) how do I find out which node the ...
-3
votes
2answers
136 views
Get gen_fsm PID
I start gen_fsm:
start_link() ->
gen_fsm:start_link({global, ?MODULE}, [],
[]).
How can i get it's PID?
Thank you.
0
votes
1answer
224 views
Getting Ping from Java to Erlang
I recently posted a similar Erlang-Java related question called "Java to Erlang Messages".
I have made some progress sense then, and i've gotten a stable connection up-and-running between the two ...
5
votes
5answers
2k views
In Erlang is there any way that a message sender can wait on a response?
In Erlang is there any way that a message sender can wait on a response, so it only continues execution once the message has been processed?
And I mean something like this:
Actor ! DoSomething
...
26
votes
4answers
8k views
Can someone explain the structure of a Pid in Erlang?
Can someone explain the structure of a Pid in Erlang?
Pids looks like this : <A.B.C> , e.g. <0.30.0> , but i would like to know what is the meaning of these three "bits" : A, B and C.
'A' ...