コード例 #1
0
ファイル: Event.cs プロジェクト: orf53975/hadoop.net
 private CreateEvent(Event.CreateEvent.Builder b)
     : base(Event.EventType.Create)
 {
     this.iNodeType        = b.iNodeType;
     this.path             = b.path;
     this.ctime            = b.ctime;
     this.replication      = b.replication;
     this.ownerName        = b.ownerName;
     this.groupName        = b.groupName;
     this.perms            = b.perms;
     this.symlinkTarget    = b.symlinkTarget;
     this.overwrite        = b.overwrite;
     this.defaultBlockSize = b.defaultBlockSize;
 }
コード例 #2
0
ファイル: Event.cs プロジェクト: orf53975/hadoop.net
 public virtual Event.CreateEvent.Builder INodeType(Event.CreateEvent.INodeType type
                                                    )
 {
     this.iNodeType = type;
     return(this);
 }