Commit Graph

703 Commits

Author SHA1 Message Date
Michael Klishin
a0050be3f4
Ditto for Swift tutorial 4 2016-12-14 16:13:07 +03:00
Michael Klishin
719c973c2b
Ditto for Swift tutorial 3 2016-12-14 16:08:39 +03:00
Michael Klishin
f588a1805b
Ditto for Swift tutorial 2 2016-12-14 16:06:33 +03:00
Michael Klishin
525445964d
Fix ViewController reference, force unwrapping of received payload 2016-12-14 16:01:38 +03:00
Michael Klishin
efadf6b557
Update Objective-C tutorials for XCode 8.2 2016-12-14 15:52:43 +03:00
Michael Klishin
af4f534d60
Link to the Swift port 2016-12-14 14:45:25 +03:00
Daniil Fedotov
c1f3f3c871 Port objective-c tutorials to Swift 2016-12-12 10:43:58 +00:00
Michael Klishin
083b214459 Merge pull request #100 from Mandar12/master
Fix: deprecation warning for type
2016-09-06 14:01:01 +04:00
Mandar Kulkarni
d1266eb6a9 Fix: deprecation warning for type in exchange_declare 2016-09-06 15:02:49 +05:30
Michael Klishin
1761747ff4
Ignore .lock.json files 2016-09-01 16:44:21 +03:00
Michael Klishin
d08d848982 Merge pull request #99 from rabbitmq/objc-client-0.10.0
Bump ObjC client versions
2016-08-24 00:03:26 +03:00
Andrew Bruce
dedb4fb5a4 Bump ObjC client versions
[#128871659]
2016-08-23 17:54:26 +01:00
Michael Klishin
979f519989 Merge pull request #98 from rabbitmq/dotnet-core-4.0.0
Update dotnet tutorial to use dotnet core instead of mono
2016-08-19 14:57:51 +03:00
Michael Klishin
17632af581 Merge pull request #97 from rabbitmq/dotnet-client-4.0.0
Update dotnet-visual-studio tutorial to use RabbitMQ.Client v4.0.0
2016-08-19 14:57:37 +03:00
kjnilsson
6dac939cad update dotnet tutorial to use dotnet core instead of mono 2016-08-19 12:03:00 +01:00
Karl Nilsson
cb0d797487 update dotnet tutorial to use RabbitMQ.Client v4.0.0 2016-08-19 11:18:30 +01:00
Michael Klishin
77167bf9d2
Update Bunny instructions for 2.5.1 2016-08-15 09:27:35 +03:00
Michael Klishin
46e987336e
Explain the difference with Node 6 2016-08-12 17:30:26 +03:00
Michael Klishin
67687c0252
Revert "Use Buffer.from in place of new Buffer"
This reverts commit f71200b84f.

Many Node users are not on Node 6 yet.
2016-08-12 17:29:04 +03:00
Andrew Bruce
55315a12bc Update ObjC tutorials for v0.9.0
Also, bump their CocoaAsyncSocket versions.

[#126987947]
2016-07-25 17:13:24 +01:00
Michael Klishin
faa1f86620 Merge pull request #95 from Robinnnnn/patch-1
Use `Buffer.from` in place of `new Buffer`
2016-07-20 18:53:02 +04:00
Robinnnnn
f71200b84f Use Buffer.from in place of new Buffer
Node has [deprecated](https://nodejs.org/api/buffer.html#buffer_class_buffer) the use of `new Buffer()` as of v6.0.0 and has assigned it a stability score of 0. The Javascript tutorial should utilize [`Buffer.from`](https://nodejs.org/api/buffer.html#buffer_class_method_buffer_from_str_encoding) instead, which was introduced in v5.10.0.

Specifically, the [message sending example](https://www.rabbitmq.com/tutorials/tutorial-one-javascript.html) with this line:

`ch.sendToQueue(q, new Buffer('Hello World!'));`

should be updated to:

`ch.sendToQueue(q, Buffer.from('Hello World!'));`
2016-07-20 10:47:00 -04:00
Michael Klishin
31fe04e49f Merge pull request #94 from hnakamur/modify_go_examples
Modify go examples
2016-07-01 11:37:17 +03:00
Hiroaki Nakamura
b877dbd708 Remove reduncant panic after log.Fatalf
Also run gofmt to format code
2016-07-01 00:15:03 +00:00
Hiroaki Nakamura
808feee73b Remove unused import on fmt 2016-07-01 00:13:43 +00:00
Andrew Bruce
5d8200dfdf Close emitter connections in ObjC 4 & 5
[#120637007]
2016-06-06 13:25:51 +01:00
Andrew Bruce
0247d67abb Reinstate separate connections in ObjC 4 & 5
It seems that a local broker is delaying its basic.delivers. Before I
noticed this, I'd assumed that using separate connections was causing a
race of some sort.

[#120637007]
2016-06-06 12:29:55 +01:00
Andrew Bruce
3d56cb2a97 Update ObjC tutorials to run with v0.7
Make them more reliable by:
- Sharing connection between send / receive in 4 & 5
- Increase sleeps in 4 & 5

[#120637007]
2016-06-06 11:55:35 +01:00
Andrew Bruce
111c430e31 Instructions for running ObjC tutorials on master 2016-05-26 00:06:53 +01:00
Andrew Bruce
18566d4ac6 Bump ObjC tutorial clients 2016-05-16 17:13:06 +01:00
Michael Klishin
ccea946ff5 Merge pull request #92 from Fortiz2305/pull_req
Change buffer creation approach
2016-05-08 07:25:53 +08:00
Francisco Ortiz
bdb21793c2 Minor change 2016-05-07 13:42:27 +02:00
Francisco Ortiz
c544f2354d Change buffer creation approach 2016-05-07 13:24:52 +02:00
Andrew Bruce
406ef102f4 Bump ObjC tutorials to v0.5.0
[#118965455]
2016-05-04 23:53:03 +01:00
Andrew Bruce
ed9ee5a996 ObjC dependency bump script
[#118488437]
2016-05-03 11:36:46 +01:00
Andrew Bruce
17c4dfddf7 Fix accidental local path in Cartfiles
Again.

[#118488437]
2016-05-03 11:36:25 +01:00
Andrew Bruce
7050c8b5eb Bump ObjC client
[#118488437]
2016-05-03 11:25:02 +01:00
Andrew Bruce
6d576f8edc Bump objc client for tutorial 1 2016-04-27 14:25:17 +01:00
Andrew Bruce
6f7ba2f4cc Bump ObjC client in tutorials 1-4
[#118375823]
2016-04-26 13:47:13 +01:00
Andrew Bruce
45de28dea5 Tutorial 5 controller for Objective-C
[#118375823]
2016-04-26 11:07:44 +01:00
Andrew Bruce
632c6d2a52 ObjC tutorial 5: import RMQClient
[#118375823]
2016-04-26 11:07:33 +01:00
Andrew Bruce
1284a517fd New Xcode project for Objc tutorial 5
[#118375823]
2016-04-26 10:43:34 +01:00
Andrew Bruce
487bc7865e Objc tutorial 3 uses option-less version of fanout method
[#118335067]
2016-04-26 10:24:08 +01:00
Andrew Bruce
3ebdb63a3f Update objc tutorial 3 for latest client
[#118335067]
2016-04-26 10:17:58 +01:00
Andrew Bruce
26faeb88f7 Update objc tutorial 2 for latest client
[#118335067]
2016-04-26 10:12:08 +01:00
Andrew Bruce
6faba99f5c Update objc tutorial1 for latest client
[#118335067]
2016-04-26 10:07:03 +01:00
Andrew Bruce
58745c6160 Tutorial 4 controller for Objective-C
[#118335067]
2016-04-26 09:59:09 +01:00
Andrew Bruce
47e4234ce5 Import RMQClient in Objc Tutorial 4
[#118335067]
2016-04-25 22:39:11 +01:00
Andrew Bruce
bb805af1a5 New Xcode project for Objc tutorial 4
[#118335067]
2016-04-25 22:35:53 +01:00
Andrew Bruce
cc1581c2ab Tutorial 3 controller for Objective-C
[#117056895]
2016-04-25 22:00:35 +01:00