Distributed object

This is an old revision of this page, as edited by BeardedCat (talk | contribs) at 06:32, 19 February 2007 (Changed description to be more accurate, added thing about Cocoa DO, changed & added some links). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Distributed objects are software modules that are designed to work together, but reside either in multiple computers connected via network or in different processes inside the same computer. One object sends a message to another object in a remote machine or process to perform some task. The results are sent back to the calling object.

See also Internet protocol suite.

Examples

Distributed objects are implemented in Objective-C using the Cocoa API with the NSConnection class and supporting objects.

Distributed objects are used in Java RMI.

CORBA lets one build distributed mixed object systems.

DCOM is a framework for distributed objects on Microsoft platform.

DDObjects is a framework for distributed objects using Borland Delphi.

Pyro is a framework for distributed objects using the Python programming language.

dRuby is a framework for distributed objects using the Ruby programming language.

Distributed Objects using C++