| 154 | |
| 155 | |
| 156 | int |
| 157 | Actor::sendObject(MovableObject &theObject, |
| 158 | ChannelAddress *theAddress ) |
| 159 | { |
| 160 | if (theAddress == 0) |
| 161 | return theChannel->sendObj(commitTag, theObject,theRemoteShadowsAddress); |
| 162 | else |
| 163 | return theChannel->sendObj(commitTag, theObject,theAddress); |
| 164 | } |
| 165 | |
| 166 | int |
| 167 | Actor::recvObject(MovableObject &theObject, |
no test coverage detected