Package org.robovm.apple.gamekit
Interface GKMatchDelegate
- All Superinterfaces:
NSObjectProtocol,ObjCProtocol
- All Known Implementing Classes:
GKMatchDelegateAdapter
public interface GKMatchDelegate extends NSObjectProtocol
-
Method Summary
Modifier and Type Method Description voiddidChangeConnectionState(GKMatch match, GKPlayer player, GKPlayerConnectionState state)voiddidChangeState(GKMatch match, String playerID, GKPlayerConnectionState state)Deprecated.Deprecated in iOS 8.0.voiddidFail(GKMatch match, NSError error)voiddidReceiveData(GKMatch match, NSData data, String playerID)Deprecated.Deprecated in iOS 8.0.voiddidReceiveData(GKMatch match, NSData data, GKPlayer player)voiddidReceiveData(GKMatch match, NSData data, GKPlayer recipient, GKPlayer player)booleanshouldReinviteDisconnectedPlayer(GKMatch match, GKPlayer player)booleanshouldReinvitePlayer(GKMatch match, String playerID)Deprecated.Deprecated in iOS 8.0.
-
Method Details
-
didReceiveData
-
didReceiveData
- Since:
- Available in iOS 9.0 and later.
-
didChangeConnectionState
-
didFail
-
shouldReinviteDisconnectedPlayer
-
didReceiveData
Deprecated.Deprecated in iOS 8.0. This is never invoked and its implementation does nothing, use match:didReceiveData:fromRemotePlayer: -
didChangeState
Deprecated.Deprecated in iOS 8.0. This is never invoked and its implementation does nothing, use match:player:didChangeConnectionState: -
shouldReinvitePlayer
Deprecated.Deprecated in iOS 8.0. This is never invoked and its implementation does nothing, use shouldReinviteDisconnectedPlayer:
-