Creates the increment buffer according to current configuration.
()
| 1952 | * Creates the increment buffer according to current configuration. |
| 1953 | */ |
| 1954 | private void makeMultiColumnIncrementBuffer() { |
| 1955 | final int size = increment_buffer_size; |
| 1956 | multi_column_increment_buffer = BufferedMultiColumnIncrement.newCache(this, size); |
| 1957 | if (LOG.isDebugEnabled()) { |
| 1958 | LOG.debug("Created multi column increment buffer of " + size + " entries"); |
| 1959 | } |
| 1960 | } |
| 1961 | |
| 1962 | /** Singleton callback to handle responses of incrementColumnValue RPCs */ |
| 1963 | private static final Callback<Long, Object> icv_done = |
no test coverage detected