Deprecated API


Contents
Deprecated Classes
com.hazelcast.core.AbstractMapStore
          as of version 1.9 
 

Deprecated Methods
com.hazelcast.config.MapConfig.getEvictionDelaySeconds()
            
com.hazelcast.config.Config.getExecutorConfig()
          use getExecutorConfig (name) instead 
com.hazelcast.core.Member.getInetAddress()
          use @link{#getInetSocketAddress()} 
com.hazelcast.config.MapConfig.getMaxSize()
          use MaxSizeConfig.getSize 
com.hazelcast.core.Member.getPort()
          use @link{#getInetSocketAddress()} 
com.hazelcast.core.AtomicNumber.lazySet(long)
           
com.hazelcast.impl.FactoryImpl.AtomicNumberProxyImpl.lazySet(long)
           
com.hazelcast.nio.FastByteArrayInputStream.readLine()
          This method does not properly convert bytes to characters. As of JDK 1.1, the preferred way to read lines of text is via the BufferedReader.readLine() method. Programs that use the DataInputStream class to read lines can be converted to use the BufferedReader class by replacing code of the form:

                                                                                                                                                             DataInputStream d = new DataInputStream(in);
                                                                                                                                                             

with:

                                                                                                                                                             BufferedReader d = new BufferedReader(new InputStreamReader(in));
                                                                                                                                                             

 
com.hazelcast.core.HazelcastInstance.restart()
          as of version 1.9 
com.hazelcast.core.Hazelcast.restart()
          as of version 1.9 
com.hazelcast.config.MapConfig.setEvictionDelaySeconds(int)
            
com.hazelcast.config.Config.setExecutorConfig(ExecutorConfig)
          use addExecutorConfig instead 
com.hazelcast.config.MapConfig.setMaxSize(int)
          use MaxSizeConfig.setSize 
com.hazelcast.core.HazelcastInstance.shutdown()
          as of version 1.9 
com.hazelcast.core.Hazelcast.shutdown()
          as of version 1.9 
com.hazelcast.core.AtomicNumber.weakCompareAndSet(long, long)
           
com.hazelcast.impl.FactoryImpl.AtomicNumberProxyImpl.weakCompareAndSet(long, long)
           
 



Copyright © 2011 Hazel Bilisim Ltd.. All Rights Reserved.