com.alibaba.dubbo.common.store
Interface DataStore

All Known Implementing Classes:
SimpleDataStore

@SPI(value="simple")
public interface DataStore

Author:
kimi

Method Summary
 Map<String,Object> get(String componentName)
          return a snapshot value of componentName
 Object get(String componentName, String key)
           
 void put(String componentName, String key, Object value)
           
 void remove(String componentName, String key)
           
 

Method Detail

get

Map<String,Object> get(String componentName)
return a snapshot value of componentName


get

Object get(String componentName,
           String key)

put

void put(String componentName,
         String key,
         Object value)

remove

void remove(String componentName,
            String key)


Copyright © 2012–2017 Alibaba. All rights reserved.