다음을 통해 공유


GrainClient.Initialize 메서드

정의

오버로드

Initialize(IPEndPoint, Boolean)
사용되지 않음.

제공된 게이트웨이 주소를 사용하여 표준 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다. 구성 파일에 지정된 모든 게이트웨이 주소는 무시되고 제공된 게이트웨이 주소가 대신 사용됩니다.

Initialize(String)

제공된 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다. 지정된 구성 파일을 읽는 동안 오류가 발생하면 초기화에 실패합니다.

Initialize()

표준 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다.

Initialize(ClientConfiguration)

제공된 클라이언트 구성 개체에서 클라이언트 런타임을 초기화합니다. 구성 개체가 null이면 초기화가 실패합니다.

Initialize(FileInfo)

제공된 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다. 지정된 구성 파일을 읽는 동안 오류가 발생하면 초기화에 실패합니다.

Initialize(IPEndPoint, Boolean)

주의

This method is obsolete and will be removed in a future release. If it is needed, reimplement this method according to its source: https://github.com/dotnet/orleans/blob/8f067e77f115c0599eff00c2bdc6f37f2adbc58d/src/Orleans/Core/GrainClient.cs#L173

제공된 게이트웨이 주소를 사용하여 표준 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다. 구성 파일에 지정된 모든 게이트웨이 주소는 무시되고 제공된 게이트웨이 주소가 대신 사용됩니다.

[System.Obsolete("This method is obsolete and will be removed in a future release. If it is needed, reimplement this method according to its source: https://github.com/dotnet/orleans/blob/8f067e77f115c0599eff00c2bdc6f37f2adbc58d/src/Orleans/Core/GrainClient.cs#L173")]
public static void Initialize (System.Net.IPEndPoint gatewayAddress, bool overrideConfig = true);
public static void Initialize (System.Net.IPEndPoint gatewayAddress, bool overrideConfig = true);
[<System.Obsolete("This method is obsolete and will be removed in a future release. If it is needed, reimplement this method according to its source: https://github.com/dotnet/orleans/blob/8f067e77f115c0599eff00c2bdc6f37f2adbc58d/src/Orleans/Core/GrainClient.cs#L173")>]
static member Initialize : System.Net.IPEndPoint * bool -> unit
static member Initialize : System.Net.IPEndPoint * bool -> unit
Public Shared Sub Initialize (gatewayAddress As IPEndPoint, Optional overrideConfig As Boolean = true)

매개 변수

gatewayAddress
IPEndPoint

게이트웨이 사일로의 IP 주소 및 포트

overrideConfig
Boolean

지정된 게이트웨이 엔드포인트가 구성 파일의 값을 재정의/대체해야 하는지 또는 가산적이어야 하는지 여부

특성

적용 대상

Initialize(String)

제공된 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다. 지정된 구성 파일을 읽는 동안 오류가 발생하면 초기화에 실패합니다.

public static void Initialize (string configFilePath);
static member Initialize : string -> unit
Public Shared Sub Initialize (configFilePath As String)

매개 변수

configFilePath
String

클라이언트 구성 파일의 상대 또는 절대 경로 이름입니다.

적용 대상

Initialize()

표준 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다.

public static void Initialize ();
static member Initialize : unit -> unit
Public Shared Sub Initialize ()

적용 대상

Initialize(ClientConfiguration)

제공된 클라이언트 구성 개체에서 클라이언트 런타임을 초기화합니다. 구성 개체가 null이면 초기화가 실패합니다.

public static void Initialize (Orleans.Runtime.Configuration.ClientConfiguration config);
static member Initialize : Orleans.Runtime.Configuration.ClientConfiguration -> unit
Public Shared Sub Initialize (config As ClientConfiguration)

매개 변수

config
ClientConfiguration

ClientConfiguration 개체입니다.

적용 대상

Initialize(FileInfo)

제공된 클라이언트 구성 파일에서 클라이언트 런타임을 초기화합니다. 지정된 구성 파일을 읽는 동안 오류가 발생하면 초기화에 실패합니다.

public static void Initialize (System.IO.FileInfo configFile);
static member Initialize : System.IO.FileInfo -> unit
Public Shared Sub Initialize (configFile As FileInfo)

매개 변수

configFile
FileInfo

클라이언트 구성 파일입니다.

적용 대상