(self, fn: tp.Callable[..., tp.Any], *args: tp.Any, **kwargs: tp.Any)
| 153 | """ |
| 154 | |
| 155 | def submit(self, fn: tp.Callable[..., tp.Any], *args: tp.Any, **kwargs: tp.Any) -> DelayedJob: |
| 156 | return DelayedJob(fn, *args, **kwargs) |
| 157 | |
| 158 | |
| 159 | def _tobytes(x: tp.ArrayLike) -> bytes: |