We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c35546a commit 77d0cdcCopy full SHA for 77d0cdc
src/PharoLanguageProtocol/ReadWriteStream.extension.st
@@ -0,0 +1,6 @@
1
+Extension { #name : 'ReadWriteStream' }
2
+
3
+{ #category : '*PharoLanguageProtocol' }
4
+ReadWriteStream >> waitForData [
5
+ [ position < readLimit ] whileFalse
6
+]
src/PharoLanguageProtocol/SocketStream.extension.st
@@ -0,0 +1,7 @@
+Extension { #name : 'SocketStream' }
+SocketStream >> waitForData [
+ [ self isDataAvailable ] whileFalse
7
0 commit comments