Jacob Barrett

Results 7 comments of Jacob Barrett

I honestly can't recall why from nearly 3 years ago. I think it has to do with the registry holding references multiple references to `NoopMeter` instances. these two PRs are...

I think I would like @upthewaterspout to take a look at this too for good measure.

@albertogpz Can you please rebase this from develop. There as a fixed added there to address issues with Gradle builds.

@albertogpz we need to extract out the TX batching specific elements form the `GatewaySenderEventImpl` object. I replaced it with a implementation defined [metadata](https://github.com/pivotal-jbarrett/geode/blob/wip/wan-spi/geode-core/src/main/java/org/apache/geode/internal/cache/wan/GatewaySenderEventImpl.java#L183) object. See [`TxBatchMetadata`](https://github.com/pivotal-jbarrett/geode/blob/wip/wan-spi/geode-wan-txbatch/src/main/java/org/apache/geode/cache/wan/internal/txbatch/TxBatchMetadata.java) from my previous example...

That combination creates a window that is 2/3 tall and 2/3 wide in the middle against the left side. ![screen shot 2015-01-14 at 10 34 42 am 2](https://cloud.githubusercontent.com/assets/6800791/5744954/e89a0f30-9bd9-11e4-9c38-f23c53ade69f.jpg)

That particular window toggles between 2/3 and maybe 7/8 when centering but will toggle to 1/3 on a down or up cycle. So I tried your combination with another windows...

I love this! The issue I take with this PR is you promise: ```c++ std::for_each(std::begin(v), std::end(v), do_the_work(context)); ``` but gave me: ```c++ std::for_each(std::begin(v), std::end(v), [](){ // the body of the...