1 / 8

Jumb Architecture

Jumb Architecture. Winter of Code (WoC) 2006 Project. author : 최상훈 , 강지윤 date : 2006-01. Functional Requirements. Membership (Multicast Group) Management Join Leave Retrieve Crash Messaging Receive (Subscriber) Send (Publisher) High Level Programming Interface.

moesha
Download Presentation

Jumb Architecture

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Jumb Architecture Winter of Code (WoC) 2006 Project author : 최상훈, 강지윤 date : 2006-01

  2. Functional Requirements • Membership (Multicast Group) Management • Join • Leave • Retrieve • Crash • Messaging • Receive (Subscriber) • Send (Publisher) • High Level Programming Interface

  3. Nonfunctional Requirements • Guarantee Message Reliability • Multicast use UDP. But UDP is not Reliable • So, we are determined to apply Reliable UDP

  4. Topology Application Application Application Application Jumb F/W Jumb F/W Jumb F/W Jumb F/W ch2 ch2 ch1 ch2 ch1 ch1 Reliable Multicast Protocol Based Message Bus

  5. Programming Interface ChannelManager chMgr = ChannelManager.getInstance(); Channel ch = chMgr.getChannel(“ChannelName”); chMgr.join(ch); ch.send(); // use asynchronous message handling ch.setMessageHandler( new MessageHandler () { public void onMessage(Message msg) { // … } } ); // use synchronous message handling Message msg = ch.receive(); // … chMgr.leave(ch);

  6. VOPC

  7. Architecture Channel Channel ChannelManager Message Handler Message Handler Message Handler Message Handler ConfigToChannelFatory Channel Channel Jumb Interface (APIs) … Message Dispatcher ThreadPool Reliable Multicast Communication Layer

More Related