コード例 #1
0
 public AssemblyMetadata(string @namespace, string mapClassName, string reduceClassName, S3ObjectMetadata file)
 {
     this.Namespace       = @namespace;
     this.MapClassName    = mapClassName;
     this.ReduceClassName = reduceClassName;
     this.File            = file;
 }
コード例 #2
0
 public LineReader(S3ObjectMetadata s3ObjectMetadata)
 {
     this.objects = new List <S3ObjectMetadata>()
     {
         s3ObjectMetadata
     };
 }
コード例 #3
0
 public ReduceWorkFinishedMessage(int workerId, int taskId, List <string> keys, S3ObjectMetadata file)
 {
     this.WorkerId = workerId;
     this.TaskId   = taskId;
     this.Keys     = keys;
     this.File     = file;
 }