Futures
pykka.Future
Bases: Generic[T]
A handle to a value which is available now or in the future.
Typically returned by calls to actor methods or accesses to actor fields.
To get hold of the encapsulated value, call
Future.get() or await the future.
Source code in src/pykka/_future.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | |
filter
Return a new future with only the items passing the predicate function.
If the future's value is an iterable, filter() will return a new
future whose value is another iterable with only the items from the
first iterable for which func(item) is true. If the future's value
isn't an iterable, a TypeError will be raised when
get() is called.
Example
Version added: Pykka 1.2
Source code in src/pykka/_future.py
get
Get the value encapsulated by the future.
If the encapsulated value is an exception, it is raised instead of returned.
If timeout is None, as default, the method will block until it gets
a reply, potentially forever. If timeout is an integer or float, the
method will wait for a reply for timeout seconds, and then raise
Timeout.
The encapsulated value can be retrieved multiple times. The future will only block the first time the value is accessed.
Parameters:
-
timeout(float | None, default:None) –seconds to wait before timeout
Raises:
Returns:
-
T–encapsulated value if it is not an exception
Source code in src/pykka/_future.py
join
Return a new future with a list of the result of multiple futures.
One or more futures can be passed as arguments to join(). The new
future returns a list with the results from all the joined futures.
Example
Version added: Pykka 1.2
Source code in src/pykka/_future.py
map
Pass the result of the future through a function.
Example
Version added: Pykka 1.2
Version changed: Pykka 2.0
Previously, if the future's result was an iterable (except a string), the function was applied to each item in the iterable. This behavior was unpredictable and made regular use cases like extracting a single field from a dict difficult, thus the behavior has been simplified. Since Pykka 2.0, the entire result value is passed to the function.
Source code in src/pykka/_future.py
reduce
Reduce a future's iterable result to a single value.
The function of two arguments is applied cumulatively to the items of
the iterable, from left to right. The result of the first function call
is used as the first argument to the second function call, and so on,
until the end of the iterable. If the future's value isn't an iterable,
a TypeError is raised.
reduce() accepts an optional second argument, which will be used as an
initial value in the first function call. If the iterable is empty, the
initial value is returned.
Example
>>> import pykka
>>> f = pykka.ThreadingFuture()
>>> g = f.reduce(lambda x, y: x + y)
>>> f.set(['a', 'b', 'c'])
>>> g.get()
'abc'
>>> f = pykka.ThreadingFuture()
>>> g = f.reduce(lambda x, y: x + y)
>>> f.set([1, 2, 3])
>>> (1 + 2) + 3
6
>>> g.get()
6
>>> f = pykka.ThreadingFuture()
>>> g = f.reduce(lambda x, y: x + y, 5)
>>> f.set([1, 2, 3])
>>> ((5 + 1) + 2) + 3
11
>>> g.get()
11
>>> f = pykka.ThreadingFuture()
>>> g = f.reduce(lambda x, y: x + y, 5)
>>> f.set([])
>>> g.get()
5
Version added: Pykka 1.2
Source code in src/pykka/_future.py
set
Set the encapsulated value.
Parameters:
-
value(T | None, default:None) –the encapsulated value or nothing
Raises:
-
Exception–an exception if
set()is called multiple times
Version changed: Pykka 4.3
Calling set() on a future that already has a get hook set now
raises an exception.
Source code in src/pykka/_future.py
set_exception
Set an exception as the encapsulated value.
You can pass an exc_info three-tuple, as returned by
sys.exc_info(). If you don't pass exc_info,
sys.exc_info() will be called and the value returned
by it used.
In other words, if you're calling set_exception(), without any
arguments, from an except block, the exception you're currently handling
will automatically be set on the future.
Parameters:
-
exc_info(OptExcInfo | None, default:None) –the encapsulated exception
Version changed: Pykka 4.3
Calling set_exception() on a future that already has a get hook
set now raises an exception.
Source code in src/pykka/_future.py
set_get_hook
Set a function to be executed when get() is called.
The function will be called when get() is called, with the
timeout value as the only argument. The function's return value will
be returned from get().
Parameters:
-
func(GetHookFunc[T]) –callable accepting a timeout value, to produce return value of
get()
Version added: Pykka 1.2
Version changed: Pykka 4.3
Calling set_get_hook() on a future that already has a result set
now raises an exception.
Source code in src/pykka/_future.py
pykka.get_all
Collect all values encapsulated in the list of futures.
If timeout is not None, the method will wait for a reply for
timeout seconds, and then raise pykka.Timeout.
Parameters:
-
futures(Iterable[Future[T]]) –futures for the results to collect
-
timeout(float | None, default:None) –seconds to wait before timeout
Raises:
-
Timeout–if timeout is reached
Returns:
-
Iterable[T]–list of results