initialize

This commit is contained in:
Pruefer
2025-06-06 09:15:13 +02:00
commit fa7c2730f1
5817 changed files with 1339670 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Runtime.Remoting.Messaging;
using System.Runtime.Remoting.Proxies;
namespace com.itac.mes.commonsmt
{
class FailoverProxy : RealProxy
{
private FailoverInvocationHandler failoverInvocationHandler;
public FailoverProxy(Type type, FailoverInvocationHandler failoverInvocationHandler)
: base(type)
{
this.failoverInvocationHandler = failoverInvocationHandler;
}
public override IMessage Invoke(IMessage msg)
{
return failoverInvocationHandler.Invoke(msg);
}
}
}