FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rabbitmq-tutorials/javascript-nodejs/new_task.js at master · lobut/rabbitmq-tutorials · GitHub
lobut
/
rabbitmq-tutorials
Public
forked from
rabbitmq/rabbitmq-tutorials
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
rabbitmq-tutorials
/
javascript-nodejs
/
new_task.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (12 loc) · 543 Bytes
Breadcrumbs
rabbitmq-tutorials
/
javascript-nodejs
/
new_task.js
Copy path
File metadata and controls
16 lines (12 loc) · 543 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var
amqp
=
require
(
'amqp'
)
;
var
amqp_hacks
=
require
(
'./amqp-hacks'
)
;
var
connection
=
amqp
.
createConnection
(
{
host
:
'localhost'
}
)
;
var
message
=
process
.
argv
.
slice
(
2
)
.
join
(
' '
)
||
'Hello World!'
;
connection
.
on
(
'ready'
,
function
(
)
{
connection
.
queue
(
'task_queue'
,
{
autoDelete
:
false
,
durable
:
true
}
,
function
(
queue
)
{
connection
.
publish
(
'task_queue'
,
message
,
{
deliveryMode
:
2
}
)
;
console
.
log
(
" [x] Sent %s"
,
message
)
;
amqp_hacks
.
safeEndConnection
(
connection
)
;
}
)
;
}
)
;
Back
|
FazBrowse Home
|
New Git URL