@@ -93,10 +93,10 @@ public override void OnWireReceived(IProtocol proto, SerializationCtx ctx, Unsaf
9393 {
9494 // we are at call side, so listening no response and bind it if it's bindable
9595 var taskResult = RdTaskResult < TRes > . Read ( myCall . ReadResponseDelegate , ctx , reader ) ;
96- OnResultReceived ( proto , taskResult , dispatchHelper , false ) ;
96+ OnResultReceived ( taskResult , dispatchHelper ) ;
9797 }
9898
99- internal void OnResultReceived ( IProtocol ? proto , RdTaskResult < TRes > taskResult , IRdWireableDispatchHelper dispatchHelper , bool isLocalWire )
99+ internal void OnResultReceived ( RdTaskResult < TRes > taskResult , IRdWireableDispatchHelper dispatchHelper )
100100 {
101101 Trace ( RdReactiveBase . ourLogReceived , "received response" , taskResult ) ;
102102
@@ -110,12 +110,6 @@ internal void OnResultReceived(IProtocol? proto, RdTaskResult<TRes> taskResult,
110110 var potentiallyBindable = taskResult . Result ;
111111 if ( potentiallyBindable . IsBindable ( ) )
112112 {
113- if ( proto != null && isLocalWire )
114- {
115- // we don't have the endpoint side, since we are on stub wire, so identify bindable result here
116- potentiallyBindable . IdentifyPolymorphic ( proto . Identities , myCall . RdId . Mix ( RdId . ToString ( ) ) ) ;
117- }
118-
119113 var definition = new LifetimeDefinition { Id = potentiallyBindable } ;
120114
121115 try
0 commit comments