Examples of fromErlang()


Examples of org.springframework.erlang.support.converter.ErlangConverter.fromErlang()

  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
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.