Package com.griddynamics.gridkit.coherence.benchmark.event.pingpong

Source Code of com.griddynamics.gridkit.coherence.benchmark.event.pingpong.PingPongSimpleBouncerLite

/**
* Copyright 2008-2009 Grid Dynamics Consulting Services, Inc.
*
* Licensed 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 com.griddynamics.gridkit.coherence.benchmark.event.pingpong;

import com.tangosol.net.CacheFactory;
import com.tangosol.net.NamedCache;
import com.tangosol.util.Filter;
import com.tangosol.util.MapEvent;
import com.tangosol.util.MapListener;
import com.tangosol.util.filter.AlwaysFilter;

public class PingPongSimpleBouncerLite {
 
  public static void main(String[] args) {
    try {

      System.setProperty("tangosol.coherence.cacheconfig", "event-benchmark-cache-config.xml");
      System.setProperty("tangosol.coherence.distributed.localstorage", "false");

      // ***
      System.setProperty("event-benchmark-thread-count", "4");

      final NamedCache out = CacheFactory.getCache("out-pool");
      final NamedCache in = CacheFactory.getCache("in-pool");
      in.addMapListener(new MapListener() {
     
        @Override
        public void entryUpdated(MapEvent evt) {
          // ignore
        }
     
        @Override
        public void entryInserted(MapEvent evt) {
          out.put(evt.getKey(), evt.getNewValue());
        }
     
        @Override
        public void entryDeleted(MapEvent evt) {
          // ignore   
        }
      }, new AlwaysFilter(), true);
     
      System.out.println("Bouncer node started");
     
      while(true) {
        Thread.sleep(100);
      }
     
    } catch (Exception e) {
      e.printStackTrace();
    }   
  };

}
TOP

Related Classes of com.griddynamics.gridkit.coherence.benchmark.event.pingpong.PingPongSimpleBouncerLite

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.