当前位置: 首页>>代码示例>>C#>>正文


C# GrainReference.GetPrimaryKey方法代码示例

本文整理汇总了C#中GrainReference.GetPrimaryKey方法的典型用法代码示例。如果您正苦于以下问题:C# GrainReference.GetPrimaryKey方法的具体用法?C# GrainReference.GetPrimaryKey怎么用?C# GrainReference.GetPrimaryKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GrainReference的用法示例。


在下文中一共展示了GrainReference.GetPrimaryKey方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GrainIdAndExtensionAsString

        /// <summary>
        /// Extracts a grain ID as a string and appends the key extension with '#' infix is present.
        /// </summary>
        /// <param name="grainReference">The reference from which to extract the ID.</param>
        /// <returns>The grain ID as a string.</returns>
        /// <remarks>This likely should exist in Orleans core in more optimized form.</remarks>
        private static AdoGrainKey GrainIdAndExtensionAsString(GrainReference grainReference)
        {
            //Kudos for https://github.com/tsibelman for the algorithm. See more at https://github.com/dotnet/orleans/issues/1905.
            string keyExtension;
            AdoGrainKey key;
            if(grainReference.IsPrimaryKeyBasedOnLong())
            {
                key = new AdoGrainKey(grainReference.GetPrimaryKeyLong(out keyExtension), keyExtension);
            }
            else
            {
                key = new AdoGrainKey(grainReference.GetPrimaryKey(out keyExtension), keyExtension);
            }

            return key;
        }
开发者ID:vobradovich,项目名称:orleans,代码行数:22,代码来源:AdoNetStorageProvider.cs

示例2: ClearStateAsync

        /// <summary>
        /// Removes grain state from its backing store, if found.
        /// </summary>
        /// <param name="grainType">A string holding the name of the grain class.</param>
        /// <param name="grainReference">Represents the long-lived identity of the grain.</param>
        /// <param name="grainState">An object holding the persisted state of the grain.</param>
        /// <returns></returns>
        public Task ClearStateAsync(string grainType, GrainReference grainReference, GrainState grainState)
        {
            if (DataManager == null) throw new ArgumentException("DataManager property not initialized");

            string extendKey;

            var key = this.UseGuidAsStorageKey ? grainReference.GetPrimaryKey(out extendKey).ToString() : grainReference.ToKeyString();

            return DataManager.DeleteAsync(grainType, key);
        }
开发者ID:SmartFire,项目名称:Orleans.Storage.MongoDB,代码行数:17,代码来源:MongoDBStorage.cs

示例3: WriteStateAsync

        /// <summary>
        /// Writes the persisted state from a grain state object into its backing store.
        /// </summary>
        /// <param name="grainType">A string holding the name of the grain class.</param>
        /// <param name="grainReference">Represents the long-lived identity of the grain.</param>
        /// <param name="grainState">A reference to an object holding the persisted state of the grain.</param>
        /// <returns>Completion promise for this operation.</returns>
        public Task WriteStateAsync(string grainType, GrainReference grainReference, IGrainState grainState)
        {
            if (DataManager == null) throw new ArgumentException("DataManager property not initialized");
            var entityData = ConvertToStorageFormat(grainType, grainState);

            string extendKey;

            var key = this.UseGuidAsStorageKey ? grainReference.GetPrimaryKey(out extendKey).ToString() : grainReference.ToKeyString();

            return DataManager.WriteAsync(key, entityData);
        }
开发者ID:SmartFire,项目名称:Orleans.Storage.Couchbase,代码行数:18,代码来源:CouchbaseStorage.cs

示例4: ReadStateAsync

        /// <summary>
        /// Reads persisted state from the backing store and deserializes it into the the target
        /// grain state object.
        /// </summary>
        /// <param name="grainType">A string holding the name of the grain class.</param>
        /// <param name="grainReference">Represents the long-lived identity of the grain.</param>
        /// <param name="grainState">A reference to an object to hold the persisted state of the grain.</param>
        /// <returns>Completion promise for this operation.</returns>
        public async Task ReadStateAsync(string grainType, GrainReference grainReference, GrainState grainState)
        {
            if (DataManager == null) throw new ArgumentException("DataManager property not initialized");

            string extendKey;

            var key = this.UseGuidAsStorageKey ? grainReference.GetPrimaryKey(out extendKey).ToString() : grainReference.ToKeyString();

            var entityData = await DataManager.ReadAsync(grainType, key);

            if (!string.IsNullOrEmpty(entityData))
            {
                ConvertFromStorageFormat(grainState, entityData);
            }
        }
开发者ID:SmartFire,项目名称:Orleans.Storage.MongoDB,代码行数:23,代码来源:MongoDBStorage.cs

示例5: GetKey

        private static string GetKey(GrainReference grainReference)
        {
            string keyAsString = null;
            string keyExt = null;

            bool success = false;

            try
            {
                keyAsString = grainReference.GetPrimaryKeyLong().ToString();
                success = true;
            }
            catch
            {
                success = false;
            }
            try
            {
                keyAsString = grainReference.GetPrimaryKey().ToString();
                success = true;
            }
            catch
            {
                success = false;
            }
            if (!success)
            {
                keyAsString = grainReference.GetPrimaryKey(out keyExt).ToString();

                if (keyExt.Length > 0) //using string extension to guid, so we use the string!
                    keyAsString = keyExt;
            }

            if (keyAsString == null || keyAsString.Length == 0)
                throw new Exception(string.Format("MySQLStorage could not deduce key for grain reference {0}",
                    grainReference.ToString()));
            return keyAsString;
        }
开发者ID:andy012345,项目名称:WoWServer,代码行数:38,代码来源:OrleansMySQLJSONStorage.cs


注:本文中的GrainReference.GetPrimaryKey方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。