316 строки
27 KiB
YAML
316 строки
27 KiB
YAML
### YamlMime:JavaType
|
|
constructors:
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.ActorProxyBase()
|
|
name: ActorProxyBase()
|
|
nameWithType: ActorProxyBase.ActorProxyBase()
|
|
summary: <p>Initializes a new instance of the ActorProxy class. </p>
|
|
syntax: protected ActorProxyBase()
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.ActorProxyBase()
|
|
inheritances:
|
|
- <xref href="java.lang.Object" data-throw-if-not-resolved="False"/>
|
|
- <xref href="microsoft.servicefabric.services.remoting.builder.ProxyBase?alt=microsoft.servicefabric.services.remoting.builder.ProxyBase&text=ProxyBase" data-throw-if-not-resolved="False"/>
|
|
inheritedMembers:
|
|
- microsoft.servicefabric.services.remoting.builder.ProxyBase.continueWith(CompletableFuture<Object>)
|
|
- microsoft.servicefabric.services.remoting.builder.ProxyBase.getReturnValue(int,int,Object)
|
|
- microsoft.servicefabric.services.remoting.builder.ProxyBase.invoke(int,int,Object)
|
|
- microsoft.servicefabric.services.remoting.builder.ProxyBase.invokeAsync(int,int,Object,CancellationToken)
|
|
- microsoft.servicefabric.services.remoting.builder.ProxyBase.ProxyBase()
|
|
methods:
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId)
|
|
name: create(Class<T> actorInterfaceType, ActorId actorId)
|
|
nameWithType: ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId)
|
|
parameters:
|
|
- description: <p>The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
name: actorInterfaceType
|
|
type: <xref href="Class%3CT%3E?alt=Class%3CT%3E&text=Class%3CT%3E" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Actor Id of the proxy actor object. Methods called on this proxy will result in requests being sent to the actor with this id. </p>
|
|
name: actorId
|
|
type: <xref href="microsoft.servicefabric.actors.ActorId?alt=microsoft.servicefabric.actors.ActorId&text=ActorId" data-throw-if-not-resolved="False"/>
|
|
exceptions:
|
|
- type: <xref href="URISyntaxException?alt=URISyntaxException&text=URISyntaxException" data-throw-if-not-resolved="False"/>
|
|
description: <p>Throws exception when invalid URI format is passed as applicationName </p>
|
|
returns:
|
|
description: <p>An actor proxy object that implements <xref uid="microsoft.servicefabric.actors.client.ActorProxy" data-throw-if-not-resolved="false" data-raw-source="ActorProxy"></xref> and TActorInterface. </p>
|
|
type: static<T extends <xref href="microsoft.servicefabric.actors.Actor?alt=microsoft.servicefabric.actors.Actor&text=Actor" data-throw-if-not-resolved="False"/>> T
|
|
summary: >-
|
|
<p>Creates a proxy to the actor object that implements an actor interface.</p>
|
|
|
|
<p>
|
|
|
|
The applicationName parameter can be null if the client is running as part of the same Service Fabric application as the actor service it intends to communicate with. In this case, the application name is determined from <xref uid="system.fabric.CodePackageActivationContext" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext"></xref>, and is obtained by calling the <xref uid="system.fabric.CodePackageActivationContext.getApplicationName()" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext#getApplicationName()"></xref> property. </p>
|
|
|
|
<p></p>
|
|
syntax: public static static<T extends Actor> T create(Class<T> actorInterfaceType, ActorId actorId)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T>,ActorId)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, String applicationName)
|
|
name: create(Class<T> actorInterfaceType, ActorId actorId, String applicationName)
|
|
nameWithType: ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, String applicationName)
|
|
parameters:
|
|
- description: <p>The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
name: actorInterfaceType
|
|
type: <xref href="Class%3CT%3E?alt=Class%3CT%3E&text=Class%3CT%3E" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Actor Id of the proxy actor object. Methods called on this proxy will result in requests being sent to the actor with this id. </p>
|
|
name: actorId
|
|
type: <xref href="microsoft.servicefabric.actors.ActorId?alt=microsoft.servicefabric.actors.ActorId&text=ActorId" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Name of the Service Fabric application that contains the actor service hosting the actor objects. This parameter can be null if the client is running as part of that same Service Fabric application. For more information, see Remarks. </p>
|
|
name: applicationName
|
|
type: <xref href="String?alt=String&text=String" data-throw-if-not-resolved="False"/>
|
|
exceptions:
|
|
- type: <xref href="URISyntaxException?alt=URISyntaxException&text=URISyntaxException" data-throw-if-not-resolved="False"/>
|
|
description: <p>Throws exception when invalid URI format is passed as applicationName </p>
|
|
returns:
|
|
description: <p>An actor proxy object that implements <xref uid="microsoft.servicefabric.actors.client.ActorProxy" data-throw-if-not-resolved="false" data-raw-source="ActorProxy"></xref> and TActorInterface. </p>
|
|
type: static<T extends <xref href="microsoft.servicefabric.actors.Actor?alt=microsoft.servicefabric.actors.Actor&text=Actor" data-throw-if-not-resolved="False"/>> T
|
|
summary: >-
|
|
<p>Creates a proxy to the actor object that implements an actor interface.</p>
|
|
|
|
<p>
|
|
|
|
The applicationName parameter can be null if the client is running as part of the same Service Fabric application as the actor service it intends to communicate with. In this case, the application name is determined from <xref uid="system.fabric.CodePackageActivationContext" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext"></xref>, and is obtained by calling the <xref uid="system.fabric.CodePackageActivationContext.getApplicationName()" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext#getApplicationName()"></xref> property. </p>
|
|
|
|
<p></p>
|
|
syntax: public static static<T extends Actor> T create(Class<T> actorInterfaceType, ActorId actorId, String applicationName)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T>,ActorId,String)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName)
|
|
name: create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName)
|
|
nameWithType: ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName)
|
|
parameters:
|
|
- description: <p>The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
name: actorInterfaceType
|
|
type: <xref href="Class%3CT%3E?alt=Class%3CT%3E&text=Class%3CT%3E" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Actor Id of the proxy actor object. Methods called on this proxy will result in requests being sent to the actor with this id. </p>
|
|
name: actorId
|
|
type: <xref href="microsoft.servicefabric.actors.ActorId?alt=microsoft.servicefabric.actors.ActorId&text=ActorId" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Name of the Service Fabric application that contains the actor service hosting the actor objects. This parameter can be null if the client is running as part of that same Service Fabric application. For more information, see Remarks. </p>
|
|
name: applicationName
|
|
type: <xref href="String?alt=String&text=String" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Name of the Service Fabric service as configured by <xref uid="" data-throw-if-not-resolved="false" data-raw-source="ActorServiceAttribute"></xref> on the actor implementation. By default, the name of the service is derived from the name of the actor interface. However <xref uid="" data-throw-if-not-resolved="false" data-raw-source="ActorServiceAttribute"></xref> is required when an actor implements more than one actor interfaces or an actor interface derives from another actor interface as the determination of the serviceName cannot be made automatically. </p>
|
|
name: serviceName
|
|
type: <xref href="String?alt=String&text=String" data-throw-if-not-resolved="False"/>
|
|
exceptions:
|
|
- type: <xref href="URISyntaxException?alt=URISyntaxException&text=URISyntaxException" data-throw-if-not-resolved="False"/>
|
|
description: <p>Throws exception when invalid URI format is passed as applicationName </p>
|
|
returns:
|
|
description: <p>An actor proxy object that implements <xref uid="microsoft.servicefabric.actors.client.ActorProxy" data-throw-if-not-resolved="false" data-raw-source="ActorProxy"></xref> and TActorInterface. </p>
|
|
type: static<T extends <xref href="microsoft.servicefabric.actors.Actor?alt=microsoft.servicefabric.actors.Actor&text=Actor" data-throw-if-not-resolved="False"/>> T
|
|
summary: >-
|
|
<p>Creates a proxy to the actor object that implements an actor interface.</p>
|
|
|
|
<p>
|
|
|
|
The applicationName parameter can be null if the client is running as part of the same Service Fabric application as the actor service it intends to communicate with. In this case, the application name is determined from <xref uid="system.fabric.CodePackageActivationContext" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext"></xref>, and is obtained by calling the <xref uid="system.fabric.CodePackageActivationContext.getApplicationName()" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext#getApplicationName()"></xref> property. </p>
|
|
|
|
<p></p>
|
|
syntax: public static static<T extends Actor> T create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T>,ActorId,String,String)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName, String listenerName)
|
|
name: create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName, String listenerName)
|
|
nameWithType: ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName, String listenerName)
|
|
parameters:
|
|
- description: <p>The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
name: actorInterfaceType
|
|
type: <xref href="Class%3CT%3E?alt=Class%3CT%3E&text=Class%3CT%3E" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Actor Id of the proxy actor object. Methods called on this proxy will result in requests being sent to the actor with this id. </p>
|
|
name: actorId
|
|
type: <xref href="microsoft.servicefabric.actors.ActorId?alt=microsoft.servicefabric.actors.ActorId&text=ActorId" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Name of the Service Fabric application that contains the actor service hosting the actor objects. This parameter can be null if the client is running as part of that same Service Fabric application. For more information, see Remarks. </p>
|
|
name: applicationName
|
|
type: <xref href="String?alt=String&text=String" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Name of the Service Fabric service as configured by <xref uid="" data-throw-if-not-resolved="false" data-raw-source="ActorServiceAttribute"></xref> on the actor implementation. By default, the name of the service is derived from the name of the actor interface. However <xref uid="" data-throw-if-not-resolved="false" data-raw-source="ActorServiceAttribute"></xref> is required when an actor implements more than one actor interfaces or an actor interface derives from another actor interface as the determination of the serviceName cannot be made automatically. </p>
|
|
name: serviceName
|
|
type: <xref href="String?alt=String&text=String" data-throw-if-not-resolved="False"/>
|
|
- description: <p>By default an actor service has only one listener for clients to connect to and communicate with. However it is possible to configure an actor service with more than one listeners, the listenerName parameter specifies the name of the listener to connect to. </p>
|
|
name: listenerName
|
|
type: <xref href="String?alt=String&text=String" data-throw-if-not-resolved="False"/>
|
|
exceptions:
|
|
- type: <xref href="URISyntaxException?alt=URISyntaxException&text=URISyntaxException" data-throw-if-not-resolved="False"/>
|
|
description: <p>Throws exception when invalid URI format is passed as applicationName </p>
|
|
returns:
|
|
description: <p>An actor proxy object that implements <xref uid="microsoft.servicefabric.actors.client.ActorProxy" data-throw-if-not-resolved="false" data-raw-source="ActorProxy"></xref> and TActorInterface. </p>
|
|
type: static<T extends <xref href="microsoft.servicefabric.actors.Actor?alt=microsoft.servicefabric.actors.Actor&text=Actor" data-throw-if-not-resolved="False"/>> T
|
|
summary: >-
|
|
<p>Creates a proxy to the actor object that implements an actor interface.</p>
|
|
|
|
<p>
|
|
|
|
The applicationName parameter can be null if the client is running as part of the same Service Fabric application as the actor service it intends to communicate with. In this case, the application name is determined from <xref uid="system.fabric.CodePackageActivationContext" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext"></xref>, and is obtained by calling the <xref uid="system.fabric.CodePackageActivationContext.getApplicationName()" data-throw-if-not-resolved="false" data-raw-source="system.fabric.CodePackageActivationContext#getApplicationName()"></xref> property. </p>
|
|
|
|
<p></p>
|
|
syntax: public static static<T extends Actor> T create(Class<T> actorInterfaceType, ActorId actorId, String applicationName, String serviceName, String listenerName)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T>,ActorId,String,String,String)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri)
|
|
name: create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri)
|
|
nameWithType: ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri)
|
|
parameters:
|
|
- description: <p>The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
name: actorInterfaceType
|
|
type: <xref href="Class%3CT%3E?alt=Class%3CT%3E&text=Class%3CT%3E" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Actor Id of the proxy actor object. Methods called on this proxy will result in requests being sent to the actor with this id. </p>
|
|
name: actorId
|
|
type: <xref href="microsoft.servicefabric.actors.ActorId?alt=microsoft.servicefabric.actors.ActorId&text=ActorId" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Uri of the actor service </p>
|
|
name: serviceUri
|
|
type: <xref href="URI?alt=URI&text=URI" data-throw-if-not-resolved="False"/>
|
|
returns:
|
|
description: <p>An actor proxy object that implements <xref uid="microsoft.servicefabric.actors.client.ActorProxy" data-throw-if-not-resolved="false" data-raw-source="ActorProxy"></xref> and TActorInterface. The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
type: static<T extends <xref href="microsoft.servicefabric.actors.Actor?alt=microsoft.servicefabric.actors.Actor&text=Actor" data-throw-if-not-resolved="False"/>> T
|
|
summary: >-
|
|
<p>Creates a proxy to the actor object that implements an actor interface.</p>
|
|
|
|
<p></p>
|
|
syntax: public static static<T extends Actor> T create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T>,ActorId,URI)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri, String listenerName)
|
|
name: create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri, String listenerName)
|
|
nameWithType: ActorProxyBase.create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri, String listenerName)
|
|
parameters:
|
|
- description: <p>The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
name: actorInterfaceType
|
|
type: <xref href="Class%3CT%3E?alt=Class%3CT%3E&text=Class%3CT%3E" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Actor Id of the proxy actor object. Methods called on this proxy will result in requests being sent to the actor with this id. </p>
|
|
name: actorId
|
|
type: <xref href="microsoft.servicefabric.actors.ActorId?alt=microsoft.servicefabric.actors.ActorId&text=ActorId" data-throw-if-not-resolved="False"/>
|
|
- description: <p>Uri of the actor service </p>
|
|
name: serviceUri
|
|
type: <xref href="URI?alt=URI&text=URI" data-throw-if-not-resolved="False"/>
|
|
- description: <p>By default an actor service has only one listener for clients to connect to and communicate with. However it is possible to configure an actor service with more than one listeners, the listenerName parameter specifies the name of the listener to connect to. </p>
|
|
name: listenerName
|
|
type: <xref href="String?alt=String&text=String" data-throw-if-not-resolved="False"/>
|
|
returns:
|
|
description: <p>An actor proxy object that implements <xref uid="microsoft.servicefabric.actors.client.ActorProxy" data-throw-if-not-resolved="false" data-raw-source="ActorProxy"></xref> and TActorInterface. The actor interface implemented by the remote actor object. The returned proxy object will implement this interface. </p>
|
|
type: static<T extends <xref href="microsoft.servicefabric.actors.Actor?alt=microsoft.servicefabric.actors.Actor&text=Actor" data-throw-if-not-resolved="False"/>> T
|
|
summary: >-
|
|
<p>Creates a proxy to the actor object that implements an actor interface.</p>
|
|
|
|
<p></p>
|
|
syntax: public static static<T extends Actor> T create(Class<T> actorInterfaceType, ActorId actorId, URI serviceUri, String listenerName)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.create(Class<T>,ActorId,URI,String)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.createRequestMessageBody(Object requestMessageBodyValue)
|
|
name: createRequestMessageBody(Object requestMessageBodyValue)
|
|
nameWithType: ActorProxyBase.createRequestMessageBody(Object requestMessageBodyValue)
|
|
parameters:
|
|
- name: requestMessageBodyValue
|
|
type: <xref href="Object?alt=Object&text=Object" data-throw-if-not-resolved="False"/>
|
|
returns:
|
|
type: <xref href="Object?alt=Object&text=Object" data-throw-if-not-resolved="False"/>
|
|
syntax: protected Object createRequestMessageBody(Object requestMessageBodyValue)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.createRequestMessageBody(Object)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.deserializeMessage(byte[] msgBodyValue)
|
|
name: deserializeMessage(byte[] msgBodyValue)
|
|
nameWithType: ActorProxyBase.deserializeMessage(byte[] msgBodyValue)
|
|
parameters:
|
|
- name: msgBodyValue
|
|
type: <xref href="byte+%5B%5D?alt=byte+%5B%5D&text=byte+%5B%5D" data-throw-if-not-resolved="False"/>
|
|
returns:
|
|
type: <xref href="Object?alt=Object&text=Object" data-throw-if-not-resolved="False"/>
|
|
syntax: protected Object deserializeMessage(byte[] msgBodyValue)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.deserializeMessage(byte [])
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.getActorId()
|
|
name: getActorId()
|
|
nameWithType: ActorProxyBase.getActorId()
|
|
overridden: microsoft.servicefabric.actors.client.ActorProxy.getActorId()
|
|
returns:
|
|
description: >-
|
|
<p>
|
|
|
|
<xref uid="microsoft.servicefabric.actors.ActorId" data-throw-if-not-resolved="false" data-raw-source="microsoft.servicefabric.actors.ActorId"></xref> associated with the proxy object. </p>
|
|
type: <xref href="microsoft.servicefabric.actors.ActorId?alt=microsoft.servicefabric.actors.ActorId&text=ActorId" data-throw-if-not-resolved="False"/>
|
|
summary: >-
|
|
<p>Gets <xref uid="microsoft.servicefabric.actors.ActorId" data-throw-if-not-resolved="false" data-raw-source="microsoft.servicefabric.actors.ActorId"></xref> associated with the proxy object.</p>
|
|
|
|
<p></p>
|
|
syntax: public ActorId getActorId()
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.getActorId()
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.getActorServicePartitionClient()
|
|
name: getActorServicePartitionClient()
|
|
nameWithType: ActorProxyBase.getActorServicePartitionClient()
|
|
overridden: microsoft.servicefabric.actors.client.ActorProxy.getActorServicePartitionClient()
|
|
returns:
|
|
description: >-
|
|
<p>
|
|
|
|
<xref uid="" data-throw-if-not-resolved="false" data-raw-source="microsoft.servicefabric.actors.remoting.client.internal.ActorServicePartitionClientImpl"></xref> that this proxy is using to communicate with the actor. </p>
|
|
type: <xref href="ActorServicePartitionClientImpl?alt=ActorServicePartitionClientImpl&text=ActorServicePartitionClientImpl" data-throw-if-not-resolved="False"/>
|
|
summary: >-
|
|
<p>Gets <xref uid="" data-throw-if-not-resolved="false" data-raw-source="microsoft.servicefabric.actors.remoting.client.internal.ActorServicePartitionClientImpl"></xref> that this proxy is using to communicate with the actor.</p>
|
|
|
|
<p></p>
|
|
syntax: public ActorServicePartitionClientImpl getActorServicePartitionClient()
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.getActorServicePartitionClient()
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.getDefaultProxyFactory()
|
|
name: getDefaultProxyFactory()
|
|
nameWithType: ActorProxyBase.getDefaultProxyFactory()
|
|
returns:
|
|
description: <p>A default <xref uid="microsoft.servicefabric.actors.remoting.client.FabricActorProxyFactory" data-throw-if-not-resolved="false" data-raw-source="microsoft.servicefabric.actors.remoting.client.FabricActorProxyFactory"></xref> object. </p>
|
|
type: <xref href="microsoft.servicefabric.actors.remoting.client.FabricActorProxyFactory?alt=microsoft.servicefabric.actors.remoting.client.FabricActorProxyFactory&text=FabricActorProxyFactory" data-throw-if-not-resolved="False"/>
|
|
summary: <p>Gets the default actor proxy factory. </p>
|
|
syntax: public static FabricActorProxyFactory getDefaultProxyFactory()
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.getDefaultProxyFactory()
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.getResponseMessageBodyValue(Object responseMessageBody)
|
|
name: getResponseMessageBodyValue(Object responseMessageBody)
|
|
nameWithType: ActorProxyBase.getResponseMessageBodyValue(Object responseMessageBody)
|
|
parameters:
|
|
- name: responseMessageBody
|
|
type: <xref href="Object?alt=Object&text=Object" data-throw-if-not-resolved="False"/>
|
|
returns:
|
|
type: <xref href="Object?alt=Object&text=Object" data-throw-if-not-resolved="False"/>
|
|
syntax: protected Object getResponseMessageBodyValue(Object responseMessageBody)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.getResponseMessageBodyValue(Object)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.initialize(ActorServicePartitionClientImpl actorServicePartitionClient)
|
|
name: initialize(ActorServicePartitionClientImpl actorServicePartitionClient)
|
|
nameWithType: ActorProxyBase.initialize(ActorServicePartitionClientImpl actorServicePartitionClient)
|
|
parameters:
|
|
- description: <p>instance of ActorServicePartitionClientImpl </p>
|
|
name: actorServicePartitionClient
|
|
type: <xref href="ActorServicePartitionClientImpl?alt=ActorServicePartitionClientImpl&text=ActorServicePartitionClientImpl" data-throw-if-not-resolved="False"/>
|
|
summary: <p>Method to initialize the actor proxy instance For internal use only. </p>
|
|
syntax: public void initialize(ActorServicePartitionClientImpl actorServicePartitionClient)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.initialize(ActorServicePartitionClientImpl)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.invoke(int interfaceId, int methodId, byte[] requestMsgBodyBytes)
|
|
name: invoke(int interfaceId, int methodId, byte[] requestMsgBodyBytes)
|
|
nameWithType: ActorProxyBase.invoke(int interfaceId, int methodId, byte[] requestMsgBodyBytes)
|
|
parameters:
|
|
- name: interfaceId
|
|
type: <xref href="int?alt=int&text=int" data-throw-if-not-resolved="False"/>
|
|
- name: methodId
|
|
type: <xref href="int?alt=int&text=int" data-throw-if-not-resolved="False"/>
|
|
- name: requestMsgBodyBytes
|
|
type: <xref href="byte+%5B%5D?alt=byte+%5B%5D&text=byte+%5B%5D" data-throw-if-not-resolved="False"/>
|
|
syntax: protected void invoke(int interfaceId, int methodId, byte[] requestMsgBodyBytes)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.invoke(int,int,byte [])
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.invokeAsync(int interfaceId, int methodId, byte[] requestMsgBodyBytes, CancellationToken cancellationToken)
|
|
name: invokeAsync(int interfaceId, int methodId, byte[] requestMsgBodyBytes, CancellationToken cancellationToken)
|
|
nameWithType: ActorProxyBase.invokeAsync(int interfaceId, int methodId, byte[] requestMsgBodyBytes, CancellationToken cancellationToken)
|
|
parameters:
|
|
- name: interfaceId
|
|
type: <xref href="int?alt=int&text=int" data-throw-if-not-resolved="False"/>
|
|
- name: methodId
|
|
type: <xref href="int?alt=int&text=int" data-throw-if-not-resolved="False"/>
|
|
- name: requestMsgBodyBytes
|
|
type: <xref href="byte+%5B%5D?alt=byte+%5B%5D&text=byte+%5B%5D" data-throw-if-not-resolved="False"/>
|
|
- name: cancellationToken
|
|
type: <xref href="system.fabric.CancellationToken?alt=system.fabric.CancellationToken&text=CancellationToken" data-throw-if-not-resolved="False"/>
|
|
returns:
|
|
type: <xref href="CompletableFuture%3Cbyte%5B%5D%3E?alt=CompletableFuture%3Cbyte%5B%5D%3E&text=CompletableFuture%3Cbyte%5B%5D%3E" data-throw-if-not-resolved="False"/>
|
|
syntax: protected CompletableFuture<byte[]> invokeAsync(int interfaceId, int methodId, byte[] requestMsgBodyBytes, CancellationToken cancellationToken)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.invokeAsync(int,int,byte [],CancellationToken)
|
|
- fullName: microsoft.servicefabric.actors.client.ActorProxyBase.serializeMessage(Object msgBodyValue)
|
|
name: serializeMessage(Object msgBodyValue)
|
|
nameWithType: ActorProxyBase.serializeMessage(Object msgBodyValue)
|
|
parameters:
|
|
- name: msgBodyValue
|
|
type: <xref href="Object?alt=Object&text=Object" data-throw-if-not-resolved="False"/>
|
|
returns:
|
|
type: <xref href="byte+%5B%5D?alt=byte+%5B%5D&text=byte+%5B%5D" data-throw-if-not-resolved="False"/>
|
|
syntax: protected byte [] serializeMessage(Object msgBodyValue)
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase.serializeMessage(Object)
|
|
nameWithType: ActorProxyBase
|
|
syntax: public class ActorProxyBase extends ProxyBase implements ActorProxy
|
|
type: class
|
|
uid: microsoft.servicefabric.actors.client.ActorProxyBase
|
|
fullName: microsoft.servicefabric.actors.client.ActorProxyBase
|
|
name: ActorProxyBase
|
|
package: microsoft.servicefabric.actors.client
|
|
summary: <p>Provides the base implementation for the proxy to the remote actor objects implementing IActor interfaces. </p>
|
|
metadata: {}
|