WithRemoteAgentFilename sets the agent filename to use with the remote API
(filename string)
| 63 | |
| 64 | // WithRemoteAgentFilename sets the agent filename to use with the remote API |
| 65 | func WithRemoteAgentFilename(filename string) RemoteRuntimeOption { |
| 66 | return func(r *RemoteRuntime) { |
| 67 | r.agentFilename = filename |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | // NewRemoteRuntime creates a new remote runtime that implements the Runtime interface. |
| 72 | // It accepts any client that implements the RemoteClient interface. |