package market.market_util;

/**
 * This interface connects wrProcessor to market_wrServer servlet. It is for the direct connection.
 * @author: Nikolai Rangelov
 */

public interface m_wrServer  {
/**
 * This is only a reference to the market_rwServer's method.
 * @return long
 */
public long market_wrMethodFlow(String wrString, short langKey, long wrCounts, int srcKey);
/**
 * This is only a reference to the market_wrServer's method.
 * @return boolean
 */
public byte market_wrServerInit(int MK);
}

