Package org.springframework.erlang.support.converter

Examples of org.springframework.erlang.support.converter.ErlangConverter


    initializeConverterMap();
  }

  public Object fromErlangRpc(String module, String function, OtpErlangObject erlangObject)
      throws ErlangConversionException {
    ErlangConverter converter = getConverter(module, function);
    if (converter != null) {
      return converter.fromErlang(erlangObject);
    } else {
      return super.fromErlangRpc(module, function, erlangObject);
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.erlang.support.converter.ErlangConverter

Copyright © 2018 www.massapicom. 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.