nizhikov commented on a change in pull request #8635:
URL: https://github.com/apache/ignite/pull/8635#discussion_r559961249



##########
File path: 
modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryProcessorClient.cs
##########
@@ -99,11 +105,38 @@ public BinaryType RegisterEnum(string typeName, 
IEnumerable<KeyValuePair<string,
         }
 
         /** <inheritdoc /> */
-        public string GetTypeName(int id)
+        public string GetTypeName(int id, bool registerSameJavaType)
+        {
+            try
+            {
+                return GetTypeName(id, BinaryProcessor.DotNetPlatformId);
+            }
+            catch (Exception)

Review comment:
       Fixed.

##########
File path: modules/platforms/dotnet/Apache.Ignite.Core/Impl/PlatformJniTarget.cs
##########
@@ -309,7 +309,8 @@ private void FinishMarshal(BinaryWriter writer)
 
             var fut = convertFunc == null && futType != FutureType.Object
                 ? new Future<T>()
-                : new Future<T>(new FutureConverter<T>(_marsh, keepBinary, 
convertFunc));
+                : new Future<T>(new FutureConverter<T>(_marsh, keepBinary, 
_marsh.IsRegisterSameJavaType(),

Review comment:
       Fixed




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to