NewJVMKillAgent creates a new JVMKill agent
(ctx *common.Context, jreDir, jreVersion string)
| 20 | |
| 21 | // NewJVMKillAgent creates a new JVMKill agent |
| 22 | func NewJVMKillAgent(ctx *common.Context, jreDir, jreVersion string) *JVMKillAgent { |
| 23 | return &JVMKillAgent{ |
| 24 | ctx: ctx, |
| 25 | jreDir: jreDir, |
| 26 | jreVersion: jreVersion, |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | // Name returns the component name |
| 31 | func (j *JVMKillAgent) Name() string { |