Exemple #1
0
    public void opDoubleMarshaling_async(Test.AMD_MyClass_opDoubleMarshaling cb, double p1, Test.DoubleS p2,
                                         Ice.Current current)
    {
        double d = 1278312346.0 / 13.0;

        test(p1 == d);
        for (int i = 0; i < p2.Count; ++i)
        {
            test(p2[i] == d);
        }
        cb.ice_response();
    }
Exemple #2
0
    public override void opDoubleMarshaling_async(Test.AMD_MyClass_opDoubleMarshaling cb, double p1, double[] p2,
                                                  Ice.Current current)
    {
        double d = 1278312346.0 / 13.0;

        test(p1 == d);
        for (int i = 0; i < p2.Length; ++i)
        {
            test(p2[i] == d);
        }
        cb.ice_response();
    }