Example #1
0
 public ContainerElementList(Guid containerId, IElementExecutor <T> executorReference, IElementExecutor <T> executorGrainReference)
 {
     _containerId            = containerId;
     _executorReference      = executorReference;
     _executorGrainReference = executorGrainReference;
     Collection = new List <T>();
 }
Example #2
0
 public ContainerElementReference(Guid containerId, int offset, IElementExecutor <T> executorReference,
                                  IElementExecutor <T> executorGrainReference, bool exists = true)
 {
     ContainerId             = containerId;
     Offset                  = offset;
     _executorReference      = executorReference;
     _executorGrainReference = executorGrainReference;
     Exists                  = exists;
 }
Example #3
0
 public ContainerElementReference(Guid containerId, int offset, IElementExecutor <T> executorReference,
                                  IElementExecutor <T> executorGrainReference) : base(containerId, offset)
 {
     _executorReference      = executorReference;
     _executorGrainReference = executorGrainReference;
 }