Guest User

Untitled

a guest
May 23rd, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. start
  2.     | queue connection |
  3.    
  4.     self running: true.
  5.     queue := ConnectionQueue portNumber: 1024 queueLength: 50.
  6.    
  7.     [
  8.     [self running] whileTrue:
  9.         [
  10.             connection := queue getConnectionOrNil.
  11.             connection ifNotNil: [self new serve: connection].
  12.             Processor yield.
  13.         ]
  14.     ] fork.
Add Comment
Please, Sign In to add comment