IGrainStorage.WriteStateAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
WriteStateAsync(String, GrainReference, IGrainState) |
이 스토리지 인스턴스에 대한 데이터 함수를 작성합니다. |
WriteStateAsync<T>(String, GrainId, IGrainState<T>) |
이 스토리지 인스턴스에 대한 데이터 함수를 작성합니다. |
WriteStateAsync(String, GrainReference, IGrainState)
- Source:
- IGrainStorage.cs
이 스토리지 인스턴스에 대한 데이터 함수를 작성합니다.
public System.Threading.Tasks.Task WriteStateAsync (string grainType, Orleans.Runtime.GrainReference grainReference, Orleans.IGrainState grainState);
abstract member WriteStateAsync : string * Orleans.Runtime.GrainReference * Orleans.IGrainState -> System.Threading.Tasks.Task
Public Function WriteStateAsync (grainType As String, grainReference As GrainReference, grainState As IGrainState) As Task
매개 변수
- grainType
- String
이 조직의 형식 [정규화된 클래스 이름]
- grainReference
- GrainReference
이 조직에 대한 조직 참조 개체입니다.
- grainState
- IGrainState
이 조직에 대해 작성할 상태 데이터 개체입니다.
반환
지정된 조직에서 쓰기 작업에 대한 완료 약속입니다.
적용 대상
WriteStateAsync<T>(String, GrainId, IGrainState<T>)
이 스토리지 인스턴스에 대한 데이터 함수를 작성합니다.
public System.Threading.Tasks.Task WriteStateAsync<T> (string stateName, Orleans.Runtime.GrainId grainId, Orleans.IGrainState<T> grainState);
abstract member WriteStateAsync : string * Orleans.Runtime.GrainId * Orleans.IGrainState<'T> -> System.Threading.Tasks.Task
Public Function WriteStateAsync(Of T) (stateName As String, grainId As GrainId, grainState As IGrainState(Of T)) As Task
형식 매개 변수
- T
조직 상태 유형입니다.
매개 변수
- stateName
- String
이 조직의 상태 이름
- grainId
- GrainId
조직 ID
- grainState
- IGrainState<T>
이 조직에 대해 작성할 상태 데이터 개체입니다.
반환
지정된 조직에서 쓰기 작업에 대한 완료 약속입니다.