public TNodeFileReadString(TNode Parent, string Path, CellHeap Memory, int HeapRef) : base(Parent) { this._path = Path; this._stream = new StreamReader(Path); this._heap = Memory; this._ref = HeapRef; this.SupportsMapReduce = false; }
public TNodeFileReadBLOB(TNode Parent, string Path, CellHeap Memory, int HeapRef, int Len) : base(Parent) { this._path = Path; this._stream = File.Open(Path, FileMode.Open, FileAccess.Read); this._heap = Memory; this._ref = HeapRef; this._len = Len; this.SupportsMapReduce = false; }
public HParameter(CellHeap Heap, string Value) { this._heap = Heap; this._ref = this._heap.GetPointer(Value); this._affinity = HParameterAffinity.Scalar; }
public void Add(string Name, CellHeap Heap, string ScalarName) { this.Add(Name, Heap, ScalarName); }
public FileOjbectLibrary(CellHeap Heap) { this._heap = Heap; }
public FilePlan(string CommandName, FNodeSet Parameters, CellHeap Heap) : this(CommandName, Parameters, new FileOjbectLibrary(Heap)) { }
public FilePlan(int ID, FNodeSet Parameters, CellHeap Heap) : this(ID, Parameters, new FileOjbectLibrary(Heap)) { }