Class: ChildProcess::Windows::Process

Inherits:
AbstractProcess show all
Defined in:
lib/childprocess/windows/process.rb

Instance Attribute Summary

Attributes inherited from AbstractProcess

#detach, #exit_code

Instance Method Summary collapse

Methods inherited from AbstractProcess

#alive?, #crashed?, #initialize, #poll_for_exit, #start

Constructor Details

This class inherits a constructor from ChildProcess::AbstractProcess

Instance Method Details

#exited?Boolean

Returns:

  • (Boolean)


21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/childprocess/windows/process.rb', line 21

def exited?
  return true if @exit_code
  assert_started

  code   = @handle.exit_code
  exited = code != PROCESS_STILL_ACTIVE

  log(:exited? => exited, :code => code)

  if exited
    @exit_code = code
  end

  exited
end

#ioObject



5
6
7
# File 'lib/childprocess/windows/process.rb', line 5

def io
  @io ||= Windows::IO.new
end

#stop(timeout = 3) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/childprocess/windows/process.rb', line 9

def stop(timeout = 3)
  assert_started

  # just kill right away on windows.
  log "sending KILL"
  @handle.send(WIN_SIGKILL)

  poll_for_exit(timeout)
ensure
  @handle.close
end