OpenWriter 打开缓存文件等待写入
(key string, expiresAt int64, status int, headerSize int, bodySize int64, maxSize int64, isPartial bool)
| 467 | |
| 468 | // OpenWriter 打开缓存文件等待写入 |
| 469 | func (this *FileStorage) OpenWriter(key string, expiresAt int64, status int, headerSize int, bodySize int64, maxSize int64, isPartial bool) (Writer, error) { |
| 470 | return this.openWriter(key, expiresAt, status, headerSize, bodySize, maxSize, isPartial, false) |
| 471 | } |
| 472 | |
| 473 | // OpenFlushWriter 打开从其他媒介直接刷入的写入器 |
| 474 | func (this *FileStorage) OpenFlushWriter(key string, expiresAt int64, status int, headerSize int, bodySize int64) (Writer, error) { |
nothing calls this directly
no test coverage detected