ModTime returns the cached ModTime
(ctx context.Context)
| 135 | |
| 136 | // ModTime returns the cached ModTime |
| 137 | func (o *Object) ModTime(ctx context.Context) time.Time { |
| 138 | _ = o.refresh(ctx) |
| 139 | return time.Unix(0, o.CacheModTime) |
| 140 | } |
| 141 | |
| 142 | // Size returns the cached Size |
| 143 | func (o *Object) Size() int64 { |