All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.apple.gamekit.GKMatchmaker Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
/*
 * Copyright (C) 2013-2015 RoboVM AB
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.bugvm.apple.gamekit;

/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.uikit.*;
/**/

/**/
/**
 * @since Available in iOS 4.1 and later.
 */
/**/
/**/@Library("GameKit") @NativeClass/**/
/**/public/**/ class /**/GKMatchmaker/**/ 
    extends /**/NSObject/**/ 
    /**//**/ {

    /**/public static class GKMatchmakerPtr extends Ptr {}/**/
    /**/static { ObjCRuntime.bind(GKMatchmaker.class); }/**/
    /**//**/
    /**/
    public GKMatchmaker() {}
    protected GKMatchmaker(SkipInit skipInit) { super(skipInit); }
    /**/
    /**/
    /**
     * @since Available in iOS 4.1 and later.
     * @deprecated Deprecated in iOS 7.0.
     */
    @Deprecated
    @Property(selector = "inviteHandler")
    public native @Block VoidBlock2> getInviteHandler();
    /**
     * @since Available in iOS 4.1 and later.
     * @deprecated Deprecated in iOS 7.0.
     */
    @Deprecated
    @Property(selector = "setInviteHandler:")
    public native void setInviteHandler(@Block VoidBlock2> v);
    /**/
    /**//**/
    /**/
    /**
     * @since Available in iOS 6.0 and later.
     */
    @Method(selector = "matchForInvite:completionHandler:")
    public native void match(GKInvite invite, @Block VoidBlock2 completionHandler);
    @Method(selector = "findMatchForRequest:withCompletionHandler:")
    public native void findMatch(GKMatchRequest request, @Block VoidBlock2 completionHandler);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "findPlayersForHostedRequest:withCompletionHandler:")
    public native void findPlayersForHostedRequest(GKMatchRequest request, @Block VoidBlock2, NSError> completionHandler);
    @Method(selector = "addPlayersToMatch:matchRequest:completionHandler:")
    public native void addPlayersToMatch(GKMatch match, GKMatchRequest matchRequest, @Block VoidBlock1 completionHandler);
    @Method(selector = "cancel")
    public native void cancel();
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "cancelPendingInviteToPlayer:")
    public native void cancelPendingInvite(GKPlayer player);
    /**
     * @since Available in iOS 6.0 and later.
     */
    @Method(selector = "finishMatchmakingForMatch:")
    public native void finishMatchmaking(GKMatch match);
    @Method(selector = "queryPlayerGroupActivity:withCompletionHandler:")
    public native void queryPlayerGroupActivity(@MachineSizedUInt long playerGroup, @Block("(@MachineSizedSInt,)") VoidBlock2 completionHandler);
    @Method(selector = "queryActivityWithCompletionHandler:")
    public native void queryActivity(@Block("(@MachineSizedSInt,)") VoidBlock2 completionHandler);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "startBrowsingForNearbyPlayersWithHandler:")
    public native void startNearbyPlayersBrowsing(@Block VoidBlock2 reachableHandler);
    /**
     * @since Available in iOS 6.0 and later.
     */
    @Method(selector = "stopBrowsingForNearbyPlayers")
    public native void stopBrowsingForNearbyPlayers();
    @Method(selector = "sharedMatchmaker")
    public static native GKMatchmaker getSharedMatchmaker();
    /**
     * @since Available in iOS 6.0 and later.
     * @deprecated Deprecated in iOS 8.0.
     */
    @Deprecated
    @Method(selector = "startBrowsingForNearbyPlayersWithReachableHandler:")
    public native void startBrowsingForNearbyPlayers(@Block VoidBlock2 reachableHandler);
    /**
     * @since Available in iOS 6.0 and later.
     * @deprecated Deprecated in iOS 8.0.
     */
    @Deprecated
    @Method(selector = "cancelInviteToPlayer:")
    public native void cancelInvite(String playerID);
    /**
     * @since Available in iOS 4.1 and later.
     * @deprecated Deprecated in iOS 8.0.
     */
    @Deprecated
    @Method(selector = "findPlayersForHostedMatchRequest:withCompletionHandler:")
    public native void findPlayers(GKMatchRequest request, @Block VoidBlock2, NSError> completionHandler);
    /**/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy