Perform the write operation.
(ContextState state, Blackhole bh)
| 52 | |
| 53 | /** Perform the write operation. */ |
| 54 | @Benchmark |
| 55 | @BenchmarkMode(Mode.SampleTime) |
| 56 | @OutputTimeUnit(TimeUnit.NANOSECONDS) |
| 57 | public Context doWrite(ContextState state, Blackhole bh) { |
| 58 | return state.context.withValues( |
| 59 | state.key1, state.val, |
| 60 | state.key2, state.val, |
| 61 | state.key3, state.val, |
| 62 | state.key4, state.val); |
| 63 | } |
| 64 | } |
nothing calls this directly
no test coverage detected