RestartProcessRequest.st
author Claus Gittinger <cg@exept.de>
Sat, 17 Nov 2001 11:10:08 +0100
changeset 6211 69f320c220d5
child 7588 1819a1c408f3
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6211
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
ControlRequest subclass:#RestartProcessRequest
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'Kernel-Exceptions-Control'
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!RestartProcessRequest class methodsFor:'documentation'!
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
documentation
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    Request to restart a process.
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
    (raised when #restart is sent to a process)
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
"
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
! !
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!RestartProcessRequest class methodsFor:'documentation'!
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
version
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
    ^ '$Header: /cvs/stx/stx/libbasic/RestartProcessRequest.st,v 1.1 2001-11-17 10:10:08 cg Exp $'
69f320c220d5 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
! !