-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle the two execution contexts present now in GemStone [feenkcom/g…
…toolkit/#3942]
- Loading branch information
1 parent
2dff535
commit 31fe75c
Showing
3 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
src/GToolkit-GemStone-Pharo/GtpoGtGemStoneEvaluationExceptionContext.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Class { | ||
#name : #GtpoGtGemStoneEvaluationExceptionContext, | ||
#superclass : #GtpoGtGemStoneEvaluationContext, | ||
#category : #'GToolkit-GemStone-Pharo-Proxies' | ||
} | ||
|
||
{ #category : #accessing } | ||
GtpoGtGemStoneEvaluationExceptionContext class >> remoteClassName [ | ||
^ #GtGemStoneEvaluationExceptionContext | ||
] |
15 changes: 15 additions & 0 deletions
15
src/GToolkit-GemStone-Pharo/GtpoGtGemStoneEvaluationExecutionContext.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Class { | ||
#name : #GtpoGtGemStoneEvaluationExecutionContext, | ||
#superclass : #GtpoGtGemStoneEvaluationContext, | ||
#category : #'GToolkit-GemStone-Pharo-Proxies' | ||
} | ||
|
||
{ #category : #accessing } | ||
GtpoGtGemStoneEvaluationExecutionContext class >> remoteClassName [ | ||
^ #GtGemStoneEvaluationExecutionContext | ||
] | ||
|
||
{ #category : #accessing } | ||
GtpoGtGemStoneEvaluationExecutionContext >> wait [ | ||
^ self proxyPerform: #wait | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters