| 149 | } |
| 150 | |
| 151 | int FileChannel::recvDomain( int commitTag, Domain * theDomain ) |
| 152 | { |
| 153 | FEM_ObjectBroker theBroker; |
| 154 | |
| 155 | if ( !theFile ) { |
| 156 | printf("FileChannel::recvDomain, File is not open\n"); |
| 157 | return -1; |
| 158 | } |
| 159 | |
| 160 | setCommitStep( commitTag ); |
| 161 | return theDomain->recvSelf(commitTag, *this, theBroker); |
| 162 | } |
| 163 | |
| 164 | |
| 165 | int FileChannel::sendObj(int commitTag, |