-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add implement section for the services #46
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
`commit_append` is used to finish an append procedure. | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ title: Introduction | |
|
||
- Use [create_append](./create_append.md) to create an appendable object. | ||
- Use [write_append](./write_append.md) to write data into the object. | ||
- Use [commit_append](./commit_append.md) to finish the append procedure. This is an optional operation. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here. |
||
- Use [read](../storager/read.md) to read data from the object. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Fetcher | ||
--- | ||
|
||
`Fetcher` is used to fetch from a given url to path. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,26 @@ if err != nil { | |
} | ||
``` | ||
|
||
## Implementation | ||
|
||
This service implements following interfaces: | ||
|
||
[Servicer](../operations/servicer/index.md) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use |
||
|
||
[Storager](../operations/storager/index.md) | ||
|
||
[Appender](../operations/appender/index.md) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
[Copier](../operations/copy.md) | ||
|
||
[Fetcher](../operations/fetch.md) | ||
|
||
[Mover](../operations/move.md) | ||
|
||
[Multiparter](../operations/multiparter/index.md) | ||
|
||
[Reacher](../operations/reach.md) | ||
|
||
## Pairs | ||
|
||
### Server-Side Encryption (SSE) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
commit_append
may bed added in a new proposal, please don't include it in this PR.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. And the appender support in go-storage-dropbox depends on this operation, do I need to remove
Appender
from the implementation section temporarily?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please wait my proposal and you don't need to remove it.