Class ServiceMethodNotification
- java.lang.Object
-
- in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
-
- in.dragonbra.javasteam.steam.handlers.steamunifiedmessages.callback.ServiceMethodNotification
-
- All Implemented Interfaces:
ICallbackMsg
public class ServiceMethodNotification extends CallbackMsg
- Since:
- 2023-01-04
This callback represents a service notification received though
SteamUnifiedMessages.
-
-
Constructor Summary
Constructors Constructor Description ServiceMethodNotification(java.lang.Class<? extends com.google.protobuf.AbstractMessage> messageType, IPacketMsg packetMsg)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetBody()java.lang.StringgetMethodName()java.lang.StringgetRpcName()java.lang.StringgetServiceName()-
Methods inherited from class in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
getJobID, setJobID
-
-
-
-
Constructor Detail
-
ServiceMethodNotification
public ServiceMethodNotification(java.lang.Class<? extends com.google.protobuf.AbstractMessage> messageType, IPacketMsg packetMsg)
-
-
Method Detail
-
getServiceName
public java.lang.String getServiceName()
- Returns:
- Gets the name of the Service.
-
getRpcName
public java.lang.String getRpcName()
- Returns:
- Gets the name of the RPC method.
-
getMethodName
public java.lang.String getMethodName()
- Returns:
- Gets the full name of the service method.
-
getBody
public java.lang.Object getBody()
- Returns:
- Gets the protobuf notification body.
-
-