eventdispatch 0.1.18__tar.gz → 0.1.19__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: eventdispatch
3
- Version: 0.1.18
3
+ Version: 0.1.19
4
4
  Summary: Event Dispatch: discrete time synchronization
5
5
  Home-page: http://github.com/cyan-at/eventdispatch
6
6
  Author: Charlie Yan
@@ -38,13 +38,13 @@ class WorkItemEvent(CommonEvent):
38
38
  self.blackboard[event_dispatch.cv_name].release()
39
39
 
40
40
  def finish(self, event_dispatch, *args, **kwargs):
41
- self.log("finish!", args, kwargs)
41
+ self.log("WorkItemEvent finish!", args, kwargs)
42
42
 
43
43
  class UncertaintEvent1(CommonEvent):
44
44
  debug_color = bcolors.CYAN
45
45
 
46
46
  def dispatch(self, event_dispatch, *args, **kwargs):
47
- self.log("dispatch!", args, kwargs)
47
+ self.log("UncertaintEvent1 dispatch!", args, kwargs)
48
48
 
49
49
  time.sleep(random.randint(1, 5))
50
50
 
@@ -52,7 +52,7 @@ class UncertaintEvent1(CommonEvent):
52
52
  self.blackboard["result1"] = random.randint(1, 5)
53
53
 
54
54
  def finish(self, event_dispatch, *args, **kwargs):
55
- self.log("finish!", args, kwargs)
55
+ self.log("UncertaintEvent1 finish!", args, kwargs)
56
56
 
57
57
  with self.blackboard["result_mutex"]:
58
58
  if self.blackboard["result2"] > 0:
@@ -77,7 +77,7 @@ class UncertaintEvent2(CommonEvent):
77
77
  debug_color = bcolors.MAGENTA
78
78
 
79
79
  def dispatch(self, event_dispatch, *args, **kwargs):
80
- self.log("dispatch!", args, kwargs)
80
+ self.log("UncertaintEvent2 dispatch!", args, kwargs)
81
81
 
82
82
  time.sleep(random.randint(1, 10))
83
83
 
@@ -85,7 +85,7 @@ class UncertaintEvent2(CommonEvent):
85
85
  self.blackboard["result2"] = random.randint(1, 10)
86
86
 
87
87
  def finish(self, event_dispatch, *args, **kwargs):
88
- self.log("finish!", args, kwargs)
88
+ self.log("UncertaintEvent2 finish!", args, kwargs)
89
89
 
90
90
  with self.blackboard["result_mutex"]:
91
91
  if self.blackboard["result1"] > 0:
@@ -110,13 +110,13 @@ class CheckEvent1(CommonEvent):
110
110
  debug_color = bcolors.RED
111
111
 
112
112
  def dispatch(self, event_dispatch, *args, **kwargs):
113
- self.log("dispatch!", args, kwargs)
113
+ self.log("CheckEvent1 dispatch!", args, kwargs)
114
114
 
115
115
  s = args[1]
116
- self.log("sum", s)
116
+ self.log("CheckEvent1 sum", s)
117
117
 
118
118
  if s > 5 and args[0] > 0:
119
- self.log("results big enough to continue")
119
+ self.log("CheckEvent1: sum big enough to continue")
120
120
 
121
121
  self.blackboard[event_dispatch.cv_name].acquire()
122
122
  self.blackboard[event_dispatch.queue_name].extend([
@@ -128,12 +128,12 @@ class CheckEvent1(CommonEvent):
128
128
  self.blackboard[event_dispatch.cv_name].notify(1)
129
129
  self.blackboard[event_dispatch.cv_name].release()
130
130
  else:
131
- self.log("results not big enough or drained WorkItems, asking again")
131
+ self.log("CheckEvent1: sum <= 5 or drained remaining WorkItems, prompting again")
132
132
 
133
133
  self.blackboard["input_sem"].release()
134
134
 
135
135
  def finish(self, event_dispatch, *args, **kwargs):
136
- self.log("finish!", args, kwargs)
136
+ self.log("CheckEvent1 finish!", args, kwargs)
137
137
 
138
138
  # this is an example of an 'Actor' / 'continuous-time' process
139
139
  # a specialist in the system, that injects entrypoint Event(s)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: eventdispatch
3
- Version: 0.1.18
3
+ Version: 0.1.19
4
4
  Summary: Event Dispatch: discrete time synchronization
5
5
  Home-page: http://github.com/cyan-at/eventdispatch
6
6
  Author: Charlie Yan
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "eventdispatch"
7
- version = "0.1.18"
7
+ version = "0.1.19"
8
8
  authors = [{name = "Charlie Yan", email = "cyanatg@gmail.com"}]
9
9
  dynamic = ["scripts", "dependencies"]
10
10
  description = "Event Dispatch: discrete time synchronization"
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='eventdispatch',
5
- version='0.1.18',
5
+ version='0.1.19',
6
6
  description='Event Dispatch, a discrete time synchronizer',
7
7
  url='http://github.com/cyan-at/eventdispatch',
8
8
  author='Charlie Yan',
File without changes
File without changes
File without changes