-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #4: starting work on client forwarder cache
- Loading branch information
1 parent
341a4d0
commit 5371f31
Showing
9 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
Empty file.
5 changes: 5 additions & 0 deletions
5
...Kit_stones-Tode.package/GsClientForwarderSendNotification.class/instance/defaultAction.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,5 @@ | ||
as yet unclassified | ||
defaultAction | ||
| result | | ||
result := self performSendNoForwarder: [ self resume: (Array with: #resume with: nil) ]. | ||
self resume: (Array with: #resume with: result) |
11 changes: 11 additions & 0 deletions
11
...-Tode.package/GsClientForwarderSendNotification.class/instance/performSendNoForwarder..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,11 @@ | ||
as yet unclassified | ||
performSendNoForwarder: noForwarderBlock | ||
| forwarder clientForwarderOop selector args messageArgs | | ||
args := self tag args. | ||
clientForwarderOop := session asOopType: (args at: 1). | ||
forwarder := session clientObjectForwardedFrom: clientForwarderOop. | ||
forwarder == nil | ||
ifTrue: [ ^ noForwarderBlock value ]. | ||
selector := args at: 3. | ||
messageArgs := args at: 4. | ||
^ forwarder performFromServer: selector with: messageArgs using: session |
3 changes: 3 additions & 0 deletions
3
...GsDevKit_stones-Tode.package/GsClientForwarderSendNotification.class/instance/session..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,3 @@ | ||
as yet unclassified | ||
session: aGciSession | ||
session := aGciSession |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-Tode.package/GsClientForwarderSendNotification.class/instance/session.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,3 @@ | ||
as yet unclassified | ||
session | ||
^ session |
8 changes: 8 additions & 0 deletions
8
...sDevKit_stones-Tode.package/GsClientForwarderSendNotification.class/methodProperties.json
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,8 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"defaultAction" : "dkh 1/11/2014 15:01", | ||
"performSendNoForwarder:" : "dkh 1/11/2014 15:00", | ||
"session" : "dkh 11/18/2012 08:18", | ||
"session:" : "dkh 11/18/2012 08:19" } } |
14 changes: 14 additions & 0 deletions
14
src/GsDevKit_stones-Tode.package/GsClientForwarderSendNotification.class/properties.json
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,14 @@ | ||
{ | ||
"category" : "GsDevKit_stones-Tode", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
"session" ], | ||
"name" : "GsClientForwarderSendNotification", | ||
"pools" : [ | ||
], | ||
"super" : "Notification", | ||
"type" : "normal" } |
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
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