| 90 | } |
| 91 | |
| 92 | void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override { |
| 93 | ctx->set_output(0, ctx->input(0)); |
| 94 | ctx->env()->SchedClosureAfter(micros_, done); |
| 95 | } |
| 96 | |
| 97 | private: |
| 98 | int64 micros_; |
nothing calls this directly
no test coverage detected