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