| 27 | class SampleNode: public AsyncOpKernel { |
| 28 | public: |
| 29 | explicit SampleNode(OpKernelConstruction* ctx): AsyncOpKernel(ctx) { |
| 30 | OP_REQUIRES_OK(ctx, ctx->GetAttr("condition", &condition_)); |
| 31 | } |
| 32 | |
| 33 | void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override; |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected