File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,11 @@ PBApplication class >> do: aBlockClosure [
4444 ^ retVal
4545]
4646
47+ { #category : #initialization }
48+ PBApplication class >> initialize [
49+ SessionManager default registerToolClassNamed: self name
50+ ]
51+
4752{ #category : #testing }
4853PBApplication class >> isRunning [
4954 ^ uniqueInstance notNil and : [ uniqueInstance isRunning ]
@@ -88,6 +93,11 @@ PBApplication class >> send: obj [
8893 ^ self uniqueInstance send: obj
8994]
9095
96+ { #category : #accessing }
97+ PBApplication class >> shutdown: isImageQuitting [
98+ isImageQuitting ifTrue: [ self stop ]
99+ ]
100+
91101{ #category : #' start-stop' }
92102PBApplication class >> start [
93103 self isRunning ifTrue: [ Error signal : ' Keras already running.' ].
You can’t perform that action at this time.
0 commit comments