Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EIG:Container Introduction"

Line 9: Line 9:
  
 
  IContainer container = getContainerFactory().createContainer(<Container Type>);
 
  IContainer container = getContainerFactory().createContainer(<Container Type>);
 +
 +
===Containers===

Revision as of 14:21, 15 November 2010

< back

Container Introduction

ECF introduces the concept of a communications container. Containers represent access to a protocol-specific communications context like TCP/IP Sockets. For connection-oriented communications, an ECF container loosely corresponds to the traditional notion of a communications session, but the more general Container concept is also useful even if the communications are not session-oriented.

ECF containers can represent both point-to-point communications (e.g. client/server) or publish-and-subscribe (group) communications. Container instances can provide access to synchronous communications, asynchronous communications, or both together. This flexibility allows many communication applications to be constructed out of one or more ECF containers...each of which provides access to some specific communications context and some protocol(s) for communicating within that context.

Instance Creation

Container instance creation is done via ECF-provided factory APIs. For example, here's code to create and IContainer instance:

IContainer container = getContainerFactory().createContainer(<Container Type>);

Containers

Back to the top