public _FixedSizeIntIterator4Base_14(MReadMultipleObjects _enclosing, int baseArg1
                                      ) : base(baseArg1)
 {
     this._enclosing = _enclosing;
 }
Exemplo n.º 2
0
		private void SendReadMultipleObjectsMessage(MReadMultipleObjects message, Transaction
			 transaction, int prefetchDepth, IList idsToRead)
		{
			MsgD msg = message.GetWriterForLength(transaction, Const4.IntLength + Const4.IntLength
				 + Const4.IdLength * idsToRead.Count);
			msg.WriteInt(prefetchDepth);
			msg.WriteInt(idsToRead.Count);
			for (IEnumerator idIter = idsToRead.GetEnumerator(); idIter.MoveNext(); )
			{
				int id = ((int)idIter.Current);
				msg.WriteInt(id);
			}
			Write(msg);
		}
Exemplo n.º 3
0
			public _FixedSizeIntIterator4Base_14(MReadMultipleObjects _enclosing, int baseArg1
				) : base(baseArg1)
			{
				this._enclosing = _enclosing;
			}