From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.7 required=5.0 tests=BAYES_00,INVALID_DATE, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 Xref: utzoo comp.sw.components:121 comp.lang.ada:2607 Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!coracle.cis.ohio-state.edu!murali From: murali@coracle.cis.ohio-state.edu (S Muralidharan) Newsgroups: comp.sw.components,comp.lang.ada Subject: Re: Moving Objects Message-ID: <59237@tut.cis.ohio-state.edu> Date: 30 Aug 89 15:39:51 GMT Sender: news@tut.cis.ohio-state.edu Reply-To: Followup-To: comp.sw.components Distribution: usa Organization: Ohio State University Computer and Information Science List-Id: Johnson writes: >Distributed programmers often want to move objects to increase >efficiency and reliability. Objects are moved to be close to >the machine that is using them, and to get off of a machine that >is going down. This has nothing to do with reusability or >object-oriented doctrine. I believe concerns of software reusability definitely play a crucial role in determining what is efficient and what is not, in a distributed system. Consider the following argument. The efficiency of moving an object depends, for example, on some of the following factors: the representation of the object, the distribution of the sub-objects of the object, the sizes of the object/sub-objects, and the hardware architecture. (Note: a sub-object may have sub-objects.) If software reusability based on the specifications of objects is a concern, neither the developer of an object nor a client can make an independent decision on what to move or how to move, or how much to move, to achieve optimal efficiency. Whatever the reasons for object movement, they will certainly be influenced by the concerns of specification-based software reusability. Though I do not know the issues in distributed system reliability, I can believe that reliability need not necessarily be achieved through object movement. Cheers, Murali