Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
957ebe92
Commit
957ebe92
authored
Jun 20, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
packer: Better docs for communicator interface
parent
25afaf83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
packer/communicator.go
packer/communicator.go
+13
-0
No files found.
packer/communicator.go
View file @
957ebe92
...
@@ -39,8 +39,21 @@ type RemoteCmd struct {
...
@@ -39,8 +39,21 @@ type RemoteCmd struct {
// Communicators must be safe for concurrency, meaning multiple calls to
// Communicators must be safe for concurrency, meaning multiple calls to
// Start or any other method may be called at the same time.
// Start or any other method may be called at the same time.
type
Communicator
interface
{
type
Communicator
interface
{
// Start takes a RemoteCmd and starts it. The RemoteCmd must not be
// modified after being used with Start, and it must not be used with
// Start again. The Start method returns immediately once the command
// is started. It does not wait for the command to complete. The
// RemoteCmd.Exited field should be used for this.
Start
(
*
RemoteCmd
)
error
Start
(
*
RemoteCmd
)
error
// Upload uploads a file to the machine to the given path with the
// contents coming from the given reader. This method will block until
// it completes.
Upload
(
string
,
io
.
Reader
)
error
Upload
(
string
,
io
.
Reader
)
error
// Download downloads a file from the machine from the given remote path
// with the contents writing to the given writer. This method will
// block until it completes.
Download
(
string
,
io
.
Writer
)
error
Download
(
string
,
io
.
Writer
)
error
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment