You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2015/05/19 17:15:12 UTC

[2/2] incubator-ignite git commit: Merge remote-tracking branch 'origin/ignite-gg-9614' into ignite-gg-9614

Merge remote-tracking branch 'origin/ignite-gg-9614' into ignite-gg-9614


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/f0c0af9d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/f0c0af9d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/f0c0af9d

Branch: refs/heads/ignite-gg-9614
Commit: f0c0af9d7ef7a279dd2fa8cad294e656a615f108
Parents: e49c66f 01eddc6
Author: ptupitsyn <pt...@gridgain.com>
Authored: Tue May 19 18:14:39 2015 +0300
Committer: ptupitsyn <pt...@gridgain.com>
Committed: Tue May 19 18:14:39 2015 +0300

----------------------------------------------------------------------
 .../org/apache/ignite/internal/interop/InteropAwareEventFilter.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/f0c0af9d/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropAwareEventFilter.java
----------------------------------------------------------------------
diff --cc modules/core/src/main/java/org/apache/ignite/internal/interop/InteropAwareEventFilter.java
index 3aeb53d,0000000..8dbc73b
mode 100644,000000..100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropAwareEventFilter.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/interop/InteropAwareEventFilter.java
@@@ -1,38 -1,0 +1,37 @@@
 +/*
 + * 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 InteropAwareEventFilter<E extends Event> extends IgnitePredicate<E> {
 +    /**
 +     * Initializes the filter.
 +     */
 +    public void initialize(GridKernalContext ctx);
 +
 +    /**
 +     * Closes the filter.
 +     */
 +    public void close();
 +}