vertx(4)
-
[vert.x] Vert.x core examples - 5. Execute blocking & high Availability examples
Execute blocking examples 이 예제는 어떻게 여러분이 이벤트 루프를 block 하지 않는 방법으로 여러분의 non blocking code와 함께 안에 blocking code를 포함할 수 있는지를 설명합니다. Java execute blocking code example : https://github.com/vert-x3/vertx-examples/blob/master/core-examples/src/main/java/io/vertx/example/core/execblocking/ExecBlockingExample.java @Override public void start() throws Exception { vertx.createHttpServer().requestHandler(r..
2016.03.25 -
[vert.x] Vert.x core examples - 3. Event bus examples
Event bus examples이 예제들은 Vert.x 안에 event bus의 사용에 대한 설명을 하고 있습니다. Point to pointreceiver 와 sender 사이에 point to point 메세징을 설명합니다. receiver는 들어오는 메세지들을 위한 이벤트 버스상의 주소에 리스닝 합니다.메세지를 받을 때, 메세지에 응답합니다. sender는 매 초 그 주소상에 메세지를 보냅니다, 응답을 받을때, 그것에 대한 로그를 찍습니다. Java event bus receiver : https://github.com/vert-x3/vertx-examples/blob/master/core-examples/src/main/java/io/vertx/example/core/eventbus/pointt..
2016.03.25 -
[vert.x] Vert.x core examples - 2. Net Example
Net Example이 예제들은 Vert.x net servers 와 clients 의 사용에 대해 설명합니다.TCP(그리고 SSL) 서버와 클라이언트에 사용되었습니다. Echo이 예제는 TCP connections를 제공하고 간단하에 무엇을 받던지 간에 해당 연결로 되돌려 주는, echo server verticle 로 구성되어 있습니다.말 그대로 에코..메아리 입니다. 에코 서버를 시작가능한데 그 서버에 접속하기 위해 콘솔에다가 telent localhost 1234 로 연결합니다.몇가지를 타이핑하면, 그것이 바로 에코되어 그걸 볼수 있답니다. 에코 클라이언트도 포함되었습니다. 서버에 연결을 만들고, 데이터를 보내고, 되돌려 받는 로그를 출력합니다.여러분은 텔넷을 통해 연결한곳에 서버든 클라이언트로 ..
2016.03.25 -
[vert.x] Vert.x core examples - 1.시작
Vert.x core만 사용한 넓은 범위의 예제를 포함하고 있습니다. Vert.x core Example : https://github.com/vert-x3/vertx-examples/blob/master/core-examples/README.adoc Vert.x core examples 자~!!! 해볼까용Vert.x core in action를 설명하고 있는 예제를 이제부터 보시게 되겠습니다. Vert.x core는 공정하게 로우 레벨 기능성을 여러 범위의 기능들을 위해 HTTP,TCP,UDP , WebSockets, File System access, timers, verticles 등등을 포함하여 제공합니다. Vert.x core에 대해서는 좀더 상세한 설명을 제공하는 메뉴얼을 읽어 보시길 바랍니다..
2016.03.25