Repository: incubator-ignite Updated Branches: refs/heads/ignite-gg-9614 cae4175ee -> e5a297b48
# GG-9614 review Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/e5a297b4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/e5a297b4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/e5a297b4 Branch: refs/heads/ignite-gg-9614 Commit: e5a297b485f8c052c5f36a322df304624c535ccd Parents: cae4175 Author: ptupitsyn <[email protected]> Authored: Tue May 19 17:54:45 2015 +0300 Committer: ptupitsyn <[email protected]> Committed: Tue May 19 17:54:45 2015 +0300 ---------------------------------------------------------------------- .../internal/GridEventConsumeHandler.java | 12 +++---- .../interop/GridInteropEventFilter.java | 38 -------------------- .../interop/GridInteropLocalEventListener.java | 28 --------------- .../internal/interop/InteropEventFilter.java | 38 ++++++++++++++++++++ .../interop/InteropLocalEventListener.java | 28 +++++++++++++++ .../eventstorage/GridEventStorageManager.java | 8 ++--- 6 files changed, 76 insertions(+), 76 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e5a297b4/modules/core/src/main/java/org/apache/ignite/internal/GridEventConsumeHandler.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/GridEventConsumeHandler.java b/modules/core/src/main/java/org/apache/ignite/internal/GridEventConsumeHandler.java index 5478c87..a653542 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/GridEventConsumeHandler.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/GridEventConsumeHandler.java @@ -125,8 +125,8 @@ class GridEventConsumeHandler implements GridContinuousHandler { if (filter != null) ctx.resource().injectGeneric(filter); - if (filter instanceof GridInteropEventFilter) - ((GridInteropEventFilter)filter).initialize(ctx); + if (filter instanceof InteropEventFilter) + ((InteropEventFilter)filter).initialize(ctx); final boolean loc = nodeId.equals(ctx.localNodeId()); @@ -196,16 +196,16 @@ class GridEventConsumeHandler implements GridContinuousHandler { RuntimeException err = null; try { - if (filter instanceof GridInteropEventFilter) - ((GridInteropEventFilter)filter).close(); + if (filter instanceof InteropEventFilter) + ((InteropEventFilter)filter).close(); } catch(RuntimeException ex) { err = ex; } try { - if (cb instanceof GridInteropLocalEventListener) - ((GridInteropLocalEventListener)cb).close(); + if (cb instanceof InteropLocalEventListener) + ((InteropLocalEventListener)cb).close(); } catch (RuntimeException ex) { if (err == null) http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e5a297b4/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropEventFilter.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropEventFilter.java b/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropEventFilter.java deleted file mode 100644 index 44e18ce..0000000 --- a/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropEventFilter.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.internal.interop; - -import org.apache.ignite.*; -import org.apache.ignite.events.*; -import org.apache.ignite.internal.*; -import org.apache.ignite.lang.*; - -/** - * Special version of predicate for events with initialize/close callbacks. - */ -public interface GridInteropEventFilter<E extends Event> extends IgnitePredicate<E> { - /** - * Initializes the filter. - */ - public void initialize(GridKernalContext ctx); - - /** - * Closes the filter. - */ - public void close(); -} http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e5a297b4/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropLocalEventListener.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropLocalEventListener.java b/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropLocalEventListener.java deleted file mode 100644 index 47d99e5..0000000 --- a/modules/core/src/main/java/org/apache/ignite/internal/interop/GridInteropLocalEventListener.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.internal.interop; - -/** - * Special version of listener for events with close callbacks. - */ -public interface GridInteropLocalEventListener { - /** - * Closes the listener. - */ - public void close(); -} http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e5a297b4/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropEventFilter.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropEventFilter.java b/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropEventFilter.java new file mode 100644 index 0000000..7afb6fe --- /dev/null +++ b/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropEventFilter.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.interop; + +import org.apache.ignite.*; +import org.apache.ignite.events.*; +import org.apache.ignite.internal.*; +import org.apache.ignite.lang.*; + +/** + * Special version of predicate for events with initialize/close callbacks. + */ +public interface InteropEventFilter<E extends Event> extends IgnitePredicate<E> { + /** + * Initializes the filter. + */ + public void initialize(GridKernalContext ctx); + + /** + * Closes the filter. + */ + public void close(); +} http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e5a297b4/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropLocalEventListener.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropLocalEventListener.java b/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropLocalEventListener.java new file mode 100644 index 0000000..180863b --- /dev/null +++ b/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropLocalEventListener.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.interop; + +/** + * Special version of listener for events with close callbacks. + */ +public interface InteropLocalEventListener { + /** + * Closes the listener. + */ + public void close(); +} http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e5a297b4/modules/core/src/main/java/org/apache/ignite/internal/managers/eventstorage/GridEventStorageManager.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/managers/eventstorage/GridEventStorageManager.java b/modules/core/src/main/java/org/apache/ignite/internal/managers/eventstorage/GridEventStorageManager.java index 0b366b5..bccc920 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/managers/eventstorage/GridEventStorageManager.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/managers/eventstorage/GridEventStorageManager.java @@ -655,8 +655,8 @@ public class GridEventStorageManager extends GridManagerAdapter<EventStorageSpi> { IgnitePredicate p = ((UserListenerWrapper)lsnr).listener(); - if (p instanceof GridInteropLocalEventListener) - ((GridInteropLocalEventListener)p).close(); + if (p instanceof InteropLocalEventListener) + ((InteropLocalEventListener)p).close(); } return found; @@ -761,8 +761,8 @@ public class GridEventStorageManager extends GridManagerAdapter<EventStorageSpi> public <T extends Event> Collection<T> localEvents(IgnitePredicate<T> p) { assert p != null; - if (p instanceof GridInteropEventFilter) { - GridInteropEventFilter p0 = (GridInteropEventFilter)p; + if (p instanceof InteropEventFilter) { + InteropEventFilter p0 = (InteropEventFilter)p; p0.initialize(ctx);
