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 [
44
44
^ retVal
45
45
]
46
46
47
+ { #category : #initialization }
48
+ PBApplication class >> initialize [
49
+ SessionManager default registerToolClassNamed: self name
50
+ ]
51
+
47
52
{ #category : #testing }
48
53
PBApplication class >> isRunning [
49
54
^ uniqueInstance notNil and : [ uniqueInstance isRunning ]
@@ -88,6 +93,11 @@ PBApplication class >> send: obj [
88
93
^ self uniqueInstance send: obj
89
94
]
90
95
96
+ { #category : #accessing }
97
+ PBApplication class >> shutdown: isImageQuitting [
98
+ isImageQuitting ifTrue: [ self stop ]
99
+ ]
100
+
91
101
{ #category : #' start-stop' }
92
102
PBApplication class >> start [
93
103
self isRunning ifTrue: [ Error signal : ' Keras already running.' ].
You can’t perform that action at this time.
0 commit comments